-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
24 lines (24 loc) · 949 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
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
run '~/.tmux/plugins/tpm/tpm'
set -g @plugin 'wfxr/tmux-power'
set -g @tmux_power_theme 'moon'
#set-option -g status-right "#(tmux-status-line)#[fg=colour014] %H:%M:%S | %m/%d %a#[default] "
set-option -g default-terminal screen-256color
set-option -g status-right-length 70
set-option -sg escape-time 10
set-option -g status-interval 1
set -g status-fg "colour255"
set -g status-bg "colour238"
unbind C-b
set-option -g prefix C-f
bind r source-file ~/.tmux.conf
# pane size
bind-key -n M-Up resize-pane -U 5
bind-key -n M-Down resize-pane -D 5
bind-key -n M-Left resize-pane -L 5
bind-key -n M-Right resize-pane -R 5
set-option -ga terminal-overrides ',XXX:Tc'
set-option -g mouse off
set-option -g pane-border-status bottom
set-option -g pane-border-format "#[fg=black,bg=blue] #P #[default]#(tmux-pane-border #{pane_current_command} #{pane_pid} #{pane_current_path})"