aboutsummaryrefslogtreecommitdiff
path: root/.tmux.conf
diff options
context:
space:
mode:
authorhumphreylin <[email protected]>2019-07-30 03:10:25 +0000
committerhumphreylin <[email protected]>2019-07-30 03:10:25 +0000
commite44fd9f3ecb251f6519f67f6b5856cd529ac476f (patch)
tree8c521a6c5001e377933a149b6eb77d580290b8d1 /.tmux.conf
parenta9ac5fb9d9744bf3fa16e828fd7e40042bb4bd8c (diff)
downloaddotfiles-e44fd9f3ecb251f6519f67f6b5856cd529ac476f.tar.gz
dotfiles-e44fd9f3ecb251f6519f67f6b5856cd529ac476f.tar.bz2
dotfiles-e44fd9f3ecb251f6519f67f6b5856cd529ac476f.zip
add tmux and zshrc config
Diffstat (limited to '.tmux.conf')
-rw-r--r--.tmux.conf18
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"