Skip to content

Instantly share code, notes, and snippets.

@Nicd
Last active September 6, 2015 11:49
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Nicd/0d47b9bf201ec8363714 to your computer and use it in GitHub Desktop.
Save Nicd/0d47b9bf201ec8363714 to your computer and use it in GitHub Desktop.
My .tmux.conf
# UTF-8 on for all windows
set-option -g utf8 on
set-option -g history-limit 10000
set-option -g prefix C-a
# Resize keys
bind u resize-pane -U
bind j resize-pane -D
bind h resize-pane -L
bind k resize-pane -R
# Remove pane swapping
unbind C-o
# C-a C-a
bind-key a send-prefix
# Delay between keystrokes
set -s escape-time 0
# Status bar
set -g status-bg black
set -g status-fg green
set -g status-left '#[fg=green]#H'
set-window-option -g window-status-current-bg green
set-window-option -g window-status-current-fg black
set -g status-right-length 100
set -g status-right "#[fg=yellow]#(uptime | cut -d ' ' -f 4-)"
# Enable 256 colors
set -g default-terminal "screen-256color"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment