-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
25 lines (22 loc) · 835 Bytes
/
.tmux.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
set -g aggressive-resize on
bind X confirm-before kill-session
set -s escape-time 0
set -g default-shell /bin/zsh
set -g base-index 1
setw -g pane-base-index 1
set-window-option -g mode-keys vi
set-option -g default-terminal "screen-256color"
bind -T copy-mode-vi y send-keys -X copy-pipe-and-cancel 'xclip -in -selection clipboard'
# set -g mouse on
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'jimeh/tmux-themepack'
set -g @themepack 'powerline/block/blue'
set -g @plugin 'arcticicestudio/nord-tmux'
set -g @plugin 'wfxr/tmux-fzf-url'
# Other examples:
# set -g @plugin 'github_username/plugin_name'
# set -g @plugin '[email protected]/user/plugin'
# set -g @plugin '[email protected]/user/plugin'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'