diff options
Diffstat (limited to 'dot_config')
| -rw-r--r-- | dot_config/tmux/tmux.conf | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/dot_config/tmux/tmux.conf b/dot_config/tmux/tmux.conf new file mode 100644 index 0000000..e0d060d --- /dev/null +++ b/dot_config/tmux/tmux.conf @@ -0,0 +1,20 @@ +set -a terminal-features "xterm-256color:RGB" +set -g prefix C-SPACE +set -g base-index 1 +set -g renumber-windows on +set -g mode-keys vi +set -g status-position top +set -g status-justify absolute-centre +set -g status-style "bg=default" +set -g window-status-current-style "fg=blue bg=default bold" +set -g status-right "" +set -g status-left "#S" + +bind r source-file "~/.config/tmux/tmux.conf" +bind f run-shell "tmux neww ~/.local/bin/tmux-session-dispensary.sh" + +# Vim key pane naviagtion +bind -r h select-pane -L +bind -r j select-pane -D +bind -r k select-pane -U +bind -r l select-pane -R |
