diff options
Diffstat (limited to '')
-rw-r--r-- | .config/tmux/tmux.conf | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf index 07b847a..797387b 100644 --- a/.config/tmux/tmux.conf +++ b/.config/tmux/tmux.conf @@ -1,8 +1,18 @@ set-option -sa terminal-overrides ",xterm*:Tc" +set-option -g default-shell /bin/zsh + bind h select-pane -L bind j select-pane -D bind k select-pane -U bind l select-pane -R +bind C-h select-pane -L +bind C-j select-pane -D +bind C-k select-pane -U +bind C-l select-pane -R +bind C-c new-window +bind C-n next-window +bind C-p previous-window + ## COLORSCHEME: gruvbox dark (medium) set-option -g status "on" |