Skip to content

Instantly share code, notes, and snippets.

@rlazoti
Created January 5, 2011 14:19
Show Gist options
  • Save rlazoti/766372 to your computer and use it in GitHub Desktop.
Save rlazoti/766372 to your computer and use it in GitHub Desktop.
tmux config file
unbind C-b
unbind l
set -g prefix C-a
bind-key C-a last-window
bind up resize-pane -U 1
bind down resize-pane -D 1
bind left resize-pane -L 1
bind right resize-pane -R 1
# Reload key
bind r source-file ~/.tmux.conf
# 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]#(date +"%d/%m/%Y")#[default] #[fg=blue]%H:%M#[default]'
set -g mouse-select-pane on
set -g status-keys vi
set -g status-utf8 on
set-window-option -g mode-keys vi
set-window-option -g mode-mouse on
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment