Skip to content

Instantly share code, notes, and snippets.

@matthijsgroen
Forked from eval/.tmux.conf
Created March 15, 2012 12:32
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matthijsgroen/2043973 to your computer and use it in GitHub Desktop.
Save matthijsgroen/2043973 to your computer and use it in GitHub Desktop.
TMux config
## keybindings
unbind C-b
unbind C-a
unbind %
unbind ,
unbind .
unbind n
unbind p
unbind [
unbind '"'
unbind l
unbind &
unbind "'"
#unbind shift
set-option -g prefix C-a # C-a for perfix just like screen
#set-option -g prefix ` # C-a for perfix just like screen
bind-key C-a last-window
#bind-key ` last-window
bind-key | split-window -h
bind-key \ split-window -h
bind-key _ split-window -v
bind-key x kill-pane
bind-key X kill-window
bind-key q confirm-before kill-session
bind-key Q confirm-before kill-server
bind-key , previous-window # <
bind-key . next-window # >
bind-key < swap-window -t :-
bind-key > swap-window -t :+
bind-key n command-prompt 'rename-window %%'
bind-key N command-prompt 'rename-session %%'
bind-key Escape copy-mode -u
bind-key Up copy-mode -u
bind-key r source-file ~/.tmux.conf; display-message " ✱ ~/.tmux.conf is reloaded"
bind-key R refresh-client
bind-key a send-key C-a
bind-key C-j resize-pane -L 5
bind-key C-l resize-pane -R 5
bind-key C-k resize-pane -D 5
bind-key C-i resize-pane -U 5
# select windows >10
# http://sourceforge.net/mailarchive/message.php?msg_id=27488231
bind M-1 command-prompt -p "index above 10:" "select-window -t 1%%"
# Bad Wolf
set -g status-fg white
set -g status-bg colour234
set -g window-status-activity-attr bold
set -g pane-border-fg colour245
set -g pane-active-border-fg colour39
set -g message-fg colour16
set -g message-bg colour221
set -g message-attr bold
# Custom status bar
# Powerline symbols: ⮂ ⮃ ⮀ ⮁ ⭤
set -g status-left-length 32
set -g status-right-length 150
set -g status-right '#[fg=colour245]⮃ %R ⮃ %d %b #[fg=colour254,bg=colour234,nobold]#()⮂#[fg=colour16,bg=colour254,bold] #h '
set -g window-status-format "#[fg=colour245,bg=colour234] #I ⮁ #W "
set -g window-status-current-format "#[fg=colour234,bg=colour39]⮀#[fg=colour16,bg=colour39,noreverse,bold] #I ⮁ #W #[fg=colour39,bg=colour234,nobold]⮀"
set -g default-terminal "screen-256color"
## set window notifications
set-option -g visual-activity on
set-option -g visual-content on
set-window-option -g monitor-activity on
set-window-option -g automatic-rename off
## tmux window titling for X
set-option -g set-titles on
set-option -g set-titles-string '[#I] #W'
set-window-option -g window-status-attr bold
# starts windows at 1 not 0
set-option -g base-index 0
## enable mouse
set-option -g mouse-select-pane on
set-window-option -g mode-keys vi
set-window-option -g mode-mouse on
# set-window-option -g monitor-activity off
# set-window-option -g monitor-content off
# set-option -g status-keys vi
# set-option -g history-limit 4096
# pane movement
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
# Zoom
# http://superuser.com/questions/238702/maximizing-a-pane-in-tmux
unbind +
bind + swap-pane -s 0.0 \; select-window -t 0
unbind -
bind - last-window \; swap-pane -s 0.0
bind-key R respawn-window
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment