23 lines
665 B
Bash
23 lines
665 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 'dracula/tmux'
|
|
|
|
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
|
|
run -b '~/.tmux/plugins/tpm/tpm'
|
|
|
|
set-option -g @pane_resize "1"
|
|
set -g @yank_selection_mouse 'clipboard'
|
|
|
|
set -g mouse on
|
|
set -g default-terminal "screen-256color"
|
|
set-option -ga terminal-overrides ",xterm-256color:Tc"
|
|
|
|
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
|
|
|