Created
May 6, 2013 12:07
-
-
Save eraserewind/5524755 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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