diff --git a/files/emacs/.emacs.d/init.org b/files/emacs/.emacs.d/init.org index 356ba50..51d75e7 100644 --- a/files/emacs/.emacs.d/init.org +++ b/files/emacs/.emacs.d/init.org @@ -305,7 +305,6 @@ Show me both line and column counter in my bar. (column-number-mode) #+end_src - *** Theme Setting my beloved light theme with some icons. #+begin_src emacs-lisp :tangle yes @@ -315,7 +314,7 @@ Setting my beloved light theme with some icons. :config (setq doom-themes-enable-bold t doom-themes-enable-italic t - doom-solarized-light-padded-modeline t) + doom-solarized-light-padded-modeline nil) (load-theme 'doom-solarized-light t) (doom-themes-org-config) (doom-themes-treemacs-config)) @@ -330,7 +329,7 @@ Use =doom-modeline= as a bar... together with icons and nyan cat! (doom-modeline-mode 1) (setq doom-modeline-indent-info t doom-modeline-buffer-file-name-style 'file-name - doom-modeline-height 10)) + doom-modeline-height 1)) (use-package all-the-icons :straight t) @@ -338,9 +337,8 @@ Use =doom-modeline= as a bar... together with icons and nyan cat! (use-package nyan-mode :straight t :init - (nyan-mode) - (nyan-start-animation) - (nyan-toggle-wavy-trail) + ;; (nyan-mode) + ;; (nyan-start-animation) :config (setq nyan-cat-face-number 4)) #+end_src @@ -797,7 +795,8 @@ We also need the actual snippets. (lsp-enable-which-key-integration t) (setq lsp-auto-guess-root t lsp-idle-delay 1 - lsp-enable-file-watchers nil) + lsp-enable-file-watchers nil + lsp-headerline-breadcrumb-icons-enable nil) :hook (rust-mode . lsp) (python-mode . lsp) diff --git a/files/tmux/.tmux.conf b/files/tmux/.tmux.conf index b5558d8..4205040 100644 --- a/files/tmux/.tmux.conf +++ b/files/tmux/.tmux.conf @@ -11,10 +11,13 @@ bind-key -n M-v split-window -h bind-key -n M-s split-window -v # pane selection -bind -n M-h select-pane -L -bind -n M-j select-pane -D -bind -n M-k select-pane -U -bind -n M-l select-pane -R +bind-key -n M-h select-pane -L +bind-key -n M-j select-pane -D +bind-key -n M-k select-pane -U +bind-key -n M-l select-pane -R + +# pane modifications +bind-key -n M-z resize-pane -Z # new windows bind-key -n M-c new-window @@ -39,3 +42,11 @@ set-option -g mouse on # start pane index at 1 set -g base-index 1 setw -g pane-base-index 1 + +# some styling +set -g status-bg white +set -g window-status-current-style "underscore, bold" +set -g window-status-current-format "#I:#W" +set -g window-status-format "#I:#W" +set -g status-left " " +set -g status-right "#S @ #h "