dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit 4e4b85dd404b839f0b96893b93249997f0265c9d
parent 30eccb2b635db28fc7f59af0318992bbc943cc86
Author: Anders Damsgaard <adc@geo.au.dk>
Date:   Wed, 31 Oct 2012 08:02:22 +0100

Updated tmux

Diffstat:
M.tmux.conf | 52++++++++++++++++++++++++++++++++--------------------
1 file changed, 32 insertions(+), 20 deletions(-)

diff --git a/.tmux.conf b/.tmux.conf @@ -1,5 +1,6 @@ -set -g prefix C-a -unbind % +# C-b is not acceptable -- Vim uses it +set-option -g prefix C-a +bind-key C-a last-window bind-key k select-pane -U bind-key j select-pane -D @@ -8,27 +9,38 @@ bind-key l select-pane -R bind r source-file ~/.tmux.conf \; display "Source file reloaded" -set -g default-terminal "screen-256color" - -set -g status-fg white -set -g status-bg black +set -g base-index 1 # start numbering at 1 -setw -g window-status-fg cyan -setw -g window-status-bg default -setw -g window-status-attr dim -setw -g window-status-current-fg white -setw -g window-status-current-bg red -setw -g window-status-current-attr bright - -set -g pane-border-fg green -set -g pane-border-bg black +set -g default-terminal "screen-256color" -set -g pane-active-border-fg white -set -g pane-active-border-bg yellow +# Allows us to use C-a a <command> to send commands to a TMUX session inside +# another TMUX session +bind-key a send-prefix -set -g message-fg white -set -g message-bg black -set -g message-attr bright +# Set status bar +set -g status-bg black +set -g status-fg white +set -g status-left "" +set -g status-right "#[fg=green]#H" + +# Highlight active window +set-window-option -g window-status-current-bg red +#setw -g window-status-fg cyan +#setw -g window-status-bg default +#setw -g window-status-attr dim +#setw -g window-status-current-fg white +#setw -g window-status-current-bg red +#setw -g window-status-current-attr bright + +#set -g pane-border-fg green +#set -g pane-border-bg black + +#set -g pane-active-border-fg white +#set -g pane-active-border-bg yellow + +#set -g message-fg white +#set -g message-bg black +#set -g message-attr bright setw -g utf8 on setw -g automatic-rename on