Explorar el Código

fixed coloring, added vi-like bindings

Josh Bicking hace 8 años
padre
commit
74b8703fe3
Se han modificado 1 ficheros con 11 adiciones y 0 borrados
  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