Skip to content

Instantly share code, notes, and snippets.

@eraserewind
Created May 6, 2013 12:07
Show Gist options
  • Save eraserewind/5524755 to your computer and use it in GitHub Desktop.
Save eraserewind/5524755 to your computer and use it in GitHub Desktop.
# acts like screen
unbind C-b
set -g prefix C-a
# good colors
set -g default-terminal "screen-256color"
# can haz history
set -g history-limit 10000
set -g terminal-overrides 'xterm*:smcup@:rmcup@'
# Faster commands
set -s escape-time 0
# Sexyness
setw -g aggressive-resize on
# Visual bell
setw -g monitor-activity on
set -g visual-activity on
# sexy status bar
set -g status-bg black
set -g status-fg white
set -g status-left ""
set -g status-right "#[fg=green]#H"
set -g status-right "#[fg=yellow]#(hostname)"
# Highlight active window
set-window-option -g window-status-current-bg red
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment