30 lines
866 B
Bash
30 lines
866 B
Bash
# List of plugins
|
|
set -g @plugin 'tmux-plugins/tpm'
|
|
set -g @plugin 'tmux-plugins/tmux-sensible'
|
|
set -g @plugin 'tmux-plugins/tmux-pain-control'
|
|
set -g @plugin 'tmux-plugins/tmux-yank'
|
|
set -g @plugin 'tmux-plugins/tmux-resurrect'
|
|
set -g @plugin 'tmux-plugins/tmux-continuum'
|
|
|
|
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
|
|
run -b '~/.tmux/plugins/tpm/tpm'
|
|
|
|
set -g @themepack 'powerline/block/red'
|
|
set-option -g @pane_resize "1"
|
|
set -g @yank_selection_mouse 'clipboard'
|
|
set -g @continuum-boot 'on'
|
|
set -g @resurrect-strategy-nvim 'session'
|
|
set -g @resurrect-capture-pane-contents 'on'
|
|
|
|
set -g mouse on
|
|
set -g default-terminal screen-256color
|
|
|
|
source-file ~/.tmux/themes/tomorrow.tmux
|
|
|
|
bind -T copy-mode-vi y send-keys -X copy-pipe-and-cancel 'xclip -in -selection clipboard'
|
|
|
|
|
|
# bind -n End send-key C-e
|
|
# bind -n Home send-key C-a
|
|
|