-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
25 lines (23 loc) · 884 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
source /usr/lib/python3.7/site-packages/powerline/bindings/tmux/powerline.conf
set -g default-terminal "screen-256color"
set-option -g base-index 1
set-option -g display-time 3000
set-option -g repeat-time 1000
set-option -g status-right "#(date +%H:%M' ')"
set-option -g status-right-length 10
set-window-option -g mode-keys vi
set -g prefix C-x
unbind C-b
bind r source-file ~/.tmux.conf \; display "Reloaded!"
bind-key z kill-session
set-option -g allow-rename off
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
# Other examples:
# set -g @plugin 'github_username/plugin_name'
# set -g @plugin '[email protected]/user/plugin'
# set -g @plugin '[email protected]/user/plugin'
set -g @plugin 'tmux-plugins/tmux-yank'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run -b '~/.tmux/plugins/tpm/tpm'