diff options
author | Urbain Vaes <urbain@vaes.uk> | 2016-10-05 12:50:16 +0100 |
---|---|---|
committer | Urbain Vaes <urbain@vaes.uk> | 2016-10-05 12:50:16 +0100 |
commit | 9c63157ec8832994ffe4337b1bac91f77a907d0c (patch) | |
tree | c39a4736c63f5ba46d1f7f9ae0ecb317bb4acda4 /tmux | |
parent | 32e61b026cfb1f2d22da6e2b2cb41768d56f8fb9 (diff) |
[tmux] Revert to default colors
Diffstat (limited to 'tmux')
-rw-r--r-- | tmux/.tmux.conf | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf index eac0eb5..d6e36ca 100644 --- a/tmux/.tmux.conf +++ b/tmux/.tmux.conf @@ -18,11 +18,5 @@ bind -n C-j if-shell "$is_vim" "send-keys C-j" "select-pane -D" bind -n C-k if-shell "$is_vim" "send-keys C-k" "select-pane -U" bind -n C-l if-shell "$is_vim" "send-keys C-l" "select-pane -R" -bind C-n next-window -bind C-p previous-window - -bind-key -n C-S-Left swap-window -t -1 -bind-key -n C-S-Right swap-window -t +1 - -set -g status-bg colour18 -set -g status-fg colour2 +bind-key H swap-window -t -1 +bind-key L swap-window -t +1 |