From d050662f8e3c6a4750a7cb284a02ec1f5c3b4b98 Mon Sep 17 00:00:00 2001 From: Dhanus M Lal Date: Wed, 14 Jun 2023 12:29:28 +0530 Subject: [PATCH] tmux config added --- tmux/.tmux.conf | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 tmux/.tmux.conf diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf new file mode 100644 index 0000000..e72c591 --- /dev/null +++ b/tmux/.tmux.conf @@ -0,0 +1,25 @@ +# vim-like pane resizing +bind -r C-k resize-pane -U +bind -r C-j resize-pane -D +bind -r C-h resize-pane -L +bind -r C-l resize-pane -R + +# vim-like pane switching +bind -r k select-pane -U +bind -r j select-pane -D +bind -r h select-pane -L +bind -r l select-pane -R + +# and now unbind keys +unbind Up +unbind Down +unbind Left +unbind Right + +set -g mode-keys vi + + +#set -g default-terminal "screen-256color" + +#set -g status-bg black +#set -g status-fg white