]> Tony Duckles's Git Repositories (git.nynim.org) - dotfiles.git/blob - .tmux.conf
.vim: Switch to use junegunn/vim-plug as plugin manager
[dotfiles.git] / .tmux.conf
1 # -------------------------------------------------------------------
2 # Settings
3 # -------------------------------------------------------------------
4 set -g history-limit 15000 # increase scrollback lines
5 set -g default-command 'bash' # no login shell
6 set -g renumber-windows on # renumber windows sequentially after closing any of them
7 setw -g monitor-activity on # monitor for activity in windows
8 set -g visual-activity on # display status line message for windows with activity (monitor-activity)
9 set -g aggressive-resize on # smart window resizing when multiple attached clients
10 set -sg escape-time 50 # shorter Esc/Alt disambiguation timeout
11 set -sg default-term 'screen-256color'
12
13 # -------------------------------------------------------------------
14 # Look and Feel
15 # -------------------------------------------------------------------
16 # status bar
17 set -g status-style none
18 set -g status-left-style none
19 set -g status-left-length 40
20 set -g status-left ''
21 set -g status-right-style none
22 set -g status-right-length 150
23 set -g status-right '#[bg=black,fg=brightblue] #(whoami)@#H #[fg=default]/#[fg=brightblue] #S '
24 # window status
25 set -g window-status-format ' #I:#W#F '
26 set -g window-status-current-format ' #I:#W#F '
27 set -g window-status-style 'fg=colour244'
28 set -g window-status-separator ''
29 set -g window-status-current-style 'bg=brightblack,fg=brightwhite,bold'
30 set -g window-status-activity-style 'bg=black,fg=brightblue'
31 # pane border
32 set -g pane-border-style 'fg=brightblack'
33 set -g pane-active-border-style 'fg=green'
34 # pane number indicator
35 set -g display-panes-colour white
36 set -g display-panes-active-colour brightyellow
37 # clock mode
38 set -g clock-mode-colour white
39 # messages
40 set -g message-style 'bg=blue,fg=brightwhite'
41 set -g message-command-style 'bg=green,fg=brightwhite'
42 set -g mode-style 'bg=blue,fg=brightwhite'
43
44 # -------------------------------------------------------------------
45 # Key Bindings
46 # -------------------------------------------------------------------
47 # act like GNU screen
48 unbind C-b
49 set -g prefix C-a
50 bind-key a send-prefix
51 bind-key A command-prompt "rename-window %%"
52 bind-key C-a last-window
53 bind-key C new-window
54 bind-key c new-window -n 'sh' # new window w/ default title
55 bind-key C-c new-window -n 'sh' # (same as C-a c)
56 bind-key C-d detach # (same as C-a d)
57 bind-key C-n next-window # (same as C-a n)
58 bind-key C-p previous-window # (same as C-a p)
59 bind-key Escape copy-mode
60 unbind-key Space
61
62 # vim style movement
63 setw -g mode-keys vi
64 bind-key h select-pane -L
65 bind-key j select-pane -D
66 bind-key k select-pane -U
67 bind-key l select-pane -R
68 bind-key J swap-pane -D
69 bind-key K swap-pane -U
70
71 # vim style window splitting
72 bind-key 's' split-window -v
73 bind-key 'v' split-window -h
74
75 # Shift+0-9 to select screens 10-19
76 bind-key ')' select-window -t :10
77 bind-key '!' select-window -t :11
78 bind-key '@' select-window -t :12
79 bind-key '#' select-window -t :13
80 bind-key '$' select-window -t :14
81 bind-key '%' select-window -t :15
82 bind-key '^' select-window -t :16
83 bind-key '&' select-window -t :17
84 bind-key '*' select-window -t :18
85 bind-key '(' select-window -t :19
86
87 bind-key R source-file ~/.tmux.conf
88 bind-key C-o select-pane -t :.+ # (same as C-a o)
89 bind-key m setw monitor-activity # toggle monitor-activity