Update to rawhide and fix broken configs

This commit is contained in:
viktorbarzin 2020-03-12 14:21:14 +00:00
parent 27d62639c4
commit 16e496df5e
4 changed files with 57 additions and 10 deletions

View file

@ -301,7 +301,7 @@ bind M-x send-prefix
# move status line to top
#set -g status-position top
bind \ split-window -h -c "#{pane_current_path}" # Split panes horizontal
bind \\ split-window -h -c "#{pane_current_path}" # Split panes horizontal
# Use Alt-vim keys without prefix key to switch panes
bind -n M-h select-pane -L
@ -328,3 +328,19 @@ bind -T copy-mode-vi Enter send-keys -X copy-pipe-and-cancel 'xclip -in -selecti
bind-key s set-window-option synchronize-panes\; display-message "synchronize-panes is now #{?pane_synchronized,on,off}"
set-option -g default-shell /bin/zsh
# Custom added - MUST be in the end
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @resurrect-processes 'vi vim nvim man less more tail top htop'
set -g @plugin 'tmux-plugins/tmux-continuum'
set -g @continuum-restore 'on'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run -b '~/.tmux/plugins/tpm/tpm'