From 54959667b973a700856233ef6b93412049c48a4a Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Sun, 23 May 2010 21:20:04 +0200 Subject: add .tmux.conf Signed-off-by: Florian Pritz --- .tmux.conf | 75 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 .tmux.conf (limited to '.tmux.conf') 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 + -- cgit v1.2.3-24-g4f1b