diff options
Diffstat (limited to '.tmux.conf')
-rw-r--r-- | .tmux.conf | 18 |
1 files changed, 18 insertions, 0 deletions
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" |