Skip to content

Instantly share code, notes, and snippets.

@tedkulp
Created April 18, 2012 15:02
Show Gist options
  • Save tedkulp/2414160 to your computer and use it in GitHub Desktop.
Save tedkulp/2414160 to your computer and use it in GitHub Desktop.
My .tmux.conf
set-option -g default-command "reattach-to-user-namespace -l zsh"
# Set prefix to something easy
unbind C-b
set -g prefix C-a
bind a send-prefix
# Lose the delay
set -sg escape-time 1
# Change base index to 1
set -g base-index 1
setw -g pane-base-index 1
# Reload config with prefix-r
bind r source-file ~/.tmux.conf \; display "Config Reloaded"
# Last window rocks
bind C-a last-window
# Easy keys for splitting panes
bind | split-window -h
bind - split-window -v
# Move between panes vim style
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
# Resize panes in a vim-ish style
bind -r H resize-pane -L 5
bind -r J resize-pane -D 5
bind -r K resize-pane -U 5
bind -r L resize-pane -R 5
# Move between windows in a vim-ish style
bind -r C-h select-window -t :-
bind -r C-l select-window -t :+
# Disable mouse (for now)
setw -g mode-mouse off
# Make sure 256 color and utf-8 is enabled
set -g default-terminal "screen-256color"
set -g status-utf8 on
# Center the window list
set -g status-justify centre
# Update the status bar every sixty seconds
set -g status-interval 60
# enable vi keys.
setw -g mode-keys vi
# Show changes in other windows
setw -g monitor-activity on
set -g visual-activity on
set -g status-left-length 40
set -g status-left "#[fg=green]Session: #S #[fg=yellow]#I #[fg=cyan]#P"
set -g status-right "#[fg=cyan]%d %b %R"
#### COLOUR
# default statusbar colors
set-option -g status-bg colour235 #base02
set-option -g status-fg colour136 #yellow
set-option -g status-attr default
# default window title colors
set-window-option -g window-status-fg colour244
set-window-option -g window-status-bg default
#set-window-option -g window-status-attr dim
# active window title colors
set-window-option -g window-status-current-fg colour166 #orange
set-window-option -g window-status-current-bg default
#set-window-option -g window-status-current-attr bright
# pane border
set-option -g pane-border-fg colour235 #base02
set-option -g pane-active-border-fg colour240 #base01
# message text
set-option -g message-bg colour235 #base02
set-option -g message-fg colour166 #orange
# pane number display
set-option -g display-panes-active-colour colour33 #blue
set-option -g display-panes-colour colour166 #orange
# clock
set-window-option -g clock-mode-colour colour64 #green
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment