dc87b30d17e0

tmux: add tmux config
[view raw] [browse files]
author Steve Losh <steve@stevelosh.com>
date Tue, 09 Nov 2010 12:09:27 -0500
parents d00614f860c8
children e1718f4616f0
branches/tags (none)
files .tmux.conf

Changes

--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/.tmux.conf	Tue Nov 09 12:09:27 2010 -0500
@@ -0,0 +1,32 @@
+# Prefix is something nicer, like C-J
+set-option -g prefix C-j
+bind C-j send-prefix
+
+setw -g mode-keys vi
+bind h select-pane -L
+bind j select-pane -D
+bind k select-pane -U
+bind l select-pane -R
+
+unbind [
+bind Escape copy-mode
+setw -g automatic-rename
+
+# status bar
+set-option -g status-utf8 on
+set-option -g status-justify left
+set-option -g status-bg black
+set-option -g status-fg cyan
+set-option -g status-interval 5
+set-option -g status-left-length 20
+set-option -g status-left '#[fg=green]ยป #[fg=black,bold]#T#[fg=green] /#[default]'
+set-option -g status-right '#[fg=green] ###S  #[fg=black,bold]%R %m-%d#[default]'
+set-window-option -g window-status-current-fg white
+
+# clock
+set-window-option -g clock-mode-colour cyan
+set-window-option -g clock-mode-style 24
+
+# pane borders
+set-option -g pane-border-fg white
+set-option -g pane-active-border-fg magenta