Browse Source

fixed coloring, added vi-like bindings

Josh Bicking 8 years ago
parent
commit
74b8703fe3
1 changed files with 11 additions and 0 deletions
  1. 11 0
      tmux.conf

+ 11 - 0
tmux.conf

@@ -7,3 +7,14 @@ bind -n Home send-key C-a
 
 # instantly use esc key
 set -s escape-time 0
+
+# use coloring that won't disrupt vim colorscheme
+set -g default-terminal "xterm"
+
+# Use vi-like keybindings
+set-window-option -g mode-keys vi
+bind -r h select-pane -L
+bind -r j select-pane -D
+bind -r k select-pane -U
+bind -r l select-pane -R
+osh@josh-server ~/dotfile