Skip to content

Commit

Permalink
tmux
Browse files Browse the repository at this point in the history
  • Loading branch information
plukevdh committed Jul 21, 2012
1 parent 6d6a22f commit fb87f00
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
Binary file removed home/.DS_Store
Binary file not shown.
30 changes: 30 additions & 0 deletions home/.tmux.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# .tmux.conf
set -g default-terminal "screen-256color"

set-window-option -g mode-mouse on
set-option -g mouse-select-pane on
set-option -g mouse-resize-pane on
set-option -g mouse-select-window on

# remap prefix to Control + a
unbind C-b
unbind l
set -g prefix C-a
bind-key C-w last-window

bind r source-file ~/.tmux.conf

set -g default-terminal "screen-256color"
set -g history-limit 1000

# THEME
set -g status-bg black
set -g status-fg white
set -g status-interval 60
set -g status-left-length 30
set -g status-left '#[fg=green](#S) #(whoami)@#H#[default]'
set -g status-right '#[fg=yellow]#(cut -d " " -f 1-3 /proc/loadavg)#[default] #[fg=blue]%H:%M#[default]'

# quick pane cycling
unbind ^A
bind ^A select-pane -t :.+

0 comments on commit fb87f00

Please sign in to comment.