From e44fd9f3ecb251f6519f67f6b5856cd529ac476f Mon Sep 17 00:00:00 2001 From: humphreylin Date: Tue, 30 Jul 2019 03:10:25 +0000 Subject: add tmux and zshrc config --- .tmux.conf | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .tmux.conf (limited to '.tmux.conf') diff --git a/.tmux.conf b/.tmux.conf new file mode 100644 index 0000000..9f28f2e --- /dev/null +++ b/.tmux.conf @@ -0,0 +1,18 @@ +# modify the prefix +unbind ^b +set -g prefix 'C-a' + +# swtich between pane +bind h select-pane -L +bind j select-pane -D +bind k select-pane -U +bind l select-pane -R + +# resize the pane +# bind h resize-pane -L 10 +# bind l resize-pane -R 10 +# bind k resize-pane -U 5 +# bind j resize-pane -D 5 + +# color of tmux +set -g default-terminal "screen-256color" -- cgit v1.2.3