diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf index a41ef61..8403fee 100644 --- a/.config/tmux/tmux.conf +++ b/.config/tmux/tmux.conf @@ -12,6 +12,18 @@ setw -q -g utf8 on set-option -g default-shell /usr/bin/fish +set -g set-clipboard on + +# -- Plugins + +set -g @plugin 'tmux-plugins/tpm' +set -g @plugin 'tmux-plugins/tmux-sensible' +set -g @plugin 'christoomey/vim-tmux-navigator' +set -g @plugin 'catppuccin/tmux' +set -g @plugin 'tmux-plugins/tmux-yank' +set -g @plugin 'tmux-plugins/tmux-pain-control' + + # -- Set windows and panes at 1, not 0 set -g base-index 1 @@ -31,8 +43,9 @@ bind -n M-Down select-pane -D bind -n S-Left previous-window bind -n S-Right next-window -# -- Color theme +# -- Layout and Theme +set -g status-position top # macOS / darwin style set -g @catppuccin_flavour 'mocha' # -- Activity @@ -40,16 +53,6 @@ set -g @catppuccin_flavour 'mocha' set -g monitor-activity on set -g visual-activity off -# -- Plugins - -set -g @plugin 'tmux-plugins/tpm' -set -g @plugin 'tmux-plugins/tmux-sensible' -set -g @plugin 'christoomey/vim-tmux-navigator' -set -g @plugin 'catppuccin/tmux' -set -g @plugin 'tmux-plugins/tmux-yank' -set -g @plugin 'tmux-plugins/tmux-pain-control' - -run '~/.tmux/plugins/tpm/tpm' # -- Set vi-mode @@ -78,3 +81,6 @@ bind b list-buffers bind p paste-buffer bind P choose-buffer +# -- Run tmux plugins (always at end of the file) +run '~/.tmux/plugins/tpm/tpm' +