Skip to content

Commit

Permalink
Add initial tmux config file.
Browse files Browse the repository at this point in the history
Not added to the Rake install task yet.
  • Loading branch information
twe4ked committed Mar 24, 2012
1 parent c8045dc commit 80d816a
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions lib/tmux.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# set prefix to ctrl+a
unbind C-b
set -g prefix C-a

# reload configuration
bind r source-file ~/.tmux.conf \; display 'Reloaded'

set -g default-terminal 'screen-256color'

# default statusbar colors
set-option -g status-utf8 on
set-option -g status-fg colour15
set-option -g status-bg colour236

set-option -g status-left '#[bg=colour148]#[fg=colour22] #S #[default]'
set-option -g status-right '#[fg=green]#(date "+%H:%M")#[default] #[bg=colour252]#[fg=colour236] #(whoami)@#H #[default]'

# set-option -g status-right-length 1000
# set-option -g status-left-length 60

# mouse
setw -g mode-mouse on
set -g mouse-resize-pane
set -g mouse-select-pane
set -g mouse-select-window

# Jumping to panes
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R

# Window/Pane management
set -g base-index 1
set -g set-titles on
setw -g automatic-rename on

# pane dividers colors
setw -g pane-border-fg white
setw -g pane-border-bg colour236
setw -g pane-active-border-fg yellow
setw -g pane-active-border-bg blue

0 comments on commit 80d816a

Please sign in to comment.