summaryrefslogtreecommitdiffstats
path: root/.tmux.conf
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xssn.at>2010-05-23 21:20:04 +0200
committerFlorian Pritz <bluewind@xssn.at>2010-05-23 21:20:04 +0200
commit54959667b973a700856233ef6b93412049c48a4a (patch)
tree6b00f052f76867508abfa64a0c3a08aae0244058 /.tmux.conf
parent84f64e10721ecfbe22f2e46b32dbc1820f956c9b (diff)
downloaddotfiles-54959667b973a700856233ef6b93412049c48a4a.tar.gz
dotfiles-54959667b973a700856233ef6b93412049c48a4a.tar.xz
add .tmux.conf
Signed-off-by: Florian Pritz <bluewind@xssn.at>
Diffstat (limited to '.tmux.conf')
-rw-r--r--.tmux.conf75
1 files changed, 75 insertions, 0 deletions
diff --git a/.tmux.conf b/.tmux.conf
new file mode 100644
index 0000000..35eb29a
--- /dev/null
+++ b/.tmux.conf
@@ -0,0 +1,75 @@
+# vim: ft=tmux
+# original from bl1nk
+# Styles
+setw -g mode-attr bright
+setw -g mode-bg default
+setw -g mode-fg yellow
+
+setw -g window-status-attr dim
+setw -g window-status-bg default
+setw -g window-status-fg default
+
+setw -g window-status-current-attr dim
+setw -g window-status-current-bg default
+setw -g window-status-current-fg yellow
+
+set -g message-attr bright
+set -g message-bg default
+set -g message-fg red
+
+set -g status-attr bright
+set -g status-bg default
+set -g status-fg default
+
+set -g pane-active-border-fg default
+set -g pane-active-border-bg black
+
+# Options
+set -g bell-action none
+set -g history-limit 50000
+set -g status on
+set -g status-keys vi
+set -g status-utf8 on
+set -g set-titles on
+
+set -g status-left " -- #S -- "
+set -g status-left-length 30
+set -g status-right ""
+
+setw -g utf8 on
+setw -g automatic-rename on
+setw -g clock-mode-style 24
+setw -g mode-keys vi
+
+set -g prefix C-a
+unbind-key C-b
+bind-key C-a send-prefix
+
+#bind-key C-l command-prompt "link-window -s '%%'"
+bind-key W command-prompt "swap-window -t '%%'"
+bind-key R command-prompt "rename-session '%%'"
+
+bind j down-pane
+bind k up-pane
+
+# Keys to switch session.
+#bind q switchc -tmain
+#bind w switchc -tmusic
+
+# Other key bindings.
+bind i choose-window
+#bind m split-window "exec ncmpcpp"
+
+#256
+set -g default-terminal "screen-256color"
+
+# Default Sessions
+#new -d -s maini
+
+set -g set-titles-string "tmux:#I [ #W ]"
+set -g base-index 1
+set -g bell-action any
+
+bind-key b set-option status
+bind r source-file ~/.tmux.conf
+