From 2d436b859f5730647a5ff36a817904b13ca48257 Mon Sep 17 00:00:00 2001 From: Buddy Sandidge Date: Fri, 16 Oct 2020 18:57:13 -0700 Subject: [PATCH] Add plugins to tmux --- tmux.conf | 51 ++++++++++++++++++++++----------------------------- 1 file changed, 22 insertions(+), 29 deletions(-) diff --git a/tmux.conf b/tmux.conf index cc1754e..6dd3285 100644 --- a/tmux.conf +++ b/tmux.conf @@ -1,5 +1,5 @@ ################################################################################ -# Base configuration +# Base configuration ################################################################################ # Use Ctrl-a as a prefix instead of Ctrl-b set -g prefix C-a @@ -18,8 +18,8 @@ set-window-option -g pane-base-index 1 set -g status-interval 20 set -g status-justify centre -set -g status-left "#[fg=colour75]#S:#I.#P" #colour75 is an awesome blue -set -g status-right "#[fg=colour75]%F %l:%M%P" #colour75 is an awesome blue +set -g status-left "#[fg=colour75]#S:#I.#P" +set -g status-right "#{prefix_highlight} #[fg=colour75]#S:#I.#P %F %l:%M%P" setw -g monitor-activity on set -g visual-activity on @@ -27,7 +27,7 @@ set -g visual-activity on set-option -g mouse on ################################################################################ -# Colors +# Colors ################################################################################ set -g default-terminal "screen-256color" set -g terminal-overrides ",xterm-256color:Tc" @@ -36,8 +36,9 @@ set -g status-fg white set -g status-bg black ################################################################################ -# Custom bindings +# Custom bindings ################################################################################ + # Have buffers be more like vim buffers setw -g mode-keys vi unbind [ @@ -47,14 +48,6 @@ bind p paste-buffer bind-key -T copy-mode-vi 'v' send -X begin-selection bind-key -T copy-mode-vi 'y' send -X copy-selection -# Linux -#bind -T copy-mode-vi Enter send-keys -X copy-pipe-and-cancel "xclip -in -selection clipboard" -#bind-key -T copy-mode-vi MouseDragEnd1Pane send -X copy-pipe-and-cancel "xclip -in -selection clipboard" - -# macOS -#bind -T copy-mode-vi Enter send-keys -X copy-pipe-and-cancel "pbcopy" -#bind-key -T copy-mode-vi MouseDragEnd1Pane send -X copy-pipe-and-cancel "pbcopy" - # Make switch session shortcut repeatable bind -r ( switch-client -p bind -r ) switch-client -n @@ -65,27 +58,27 @@ bind r source-file $HOME/.tmux.conf \; display "Reloaded" # Send prefix to the terminal bind C-a send-prefix -# Create panes bindings -bind | split-window -h -bind \\ split-window -h -bind - split-window -v - -# Vim bindings -bind h select-pane -L -bind j select-pane -D -bind k select-pane -U -bind l select-pane -R - -bind -r H resize-pane -L 5 -bind -r J resize-pane -D 5 -bind -r K resize-pane -U 5 -bind -r L resize-pane -R 5 - bind -r C-h select-window -t :- bind -r C-l select-window -t :+ +################################################################################ +# Plugins +################################################################################ + set-environment -g TMUX_PLUGIN_MANAGER_PATH $XDG_CONFIG_HOME/tmux/plugins +set -g @plugin 'tmux-plugins/tmux-copycat' +set -g @plugin 'tmux-plugins/tmux-open' +set -g @plugin 'tmux-plugins/tmux-pain-control' +set -g @plugin 'tmux-plugins/tmux-prefix-highlight' set -g @plugin 'tmux-plugins/tmux-yank' +# O will open a file in an editor +set -g @open-editor O + +set -g @prefix_highlight_show_copy_mode 'on' +set -g @prefix_highlight_copy_mode_attr 'fg=black,bg=yellow,bold' # default is 'fg=default,bg=yellow' +set -g @prefix_highlight_show_sync_mode 'on' +set -g @prefix_highlight_sync_mode_attr 'fg=black,bg=green' # default is 'fg=default,bg=yellow' + run $XDG_CONFIG_HOME/tmux/plugins/tpm/tpm