Created
September 29, 2014 15:31
-
-
Save mfn/e3b3d94a7661072dcdd9 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
set -g default-terminal "screen-256color" | |
# Behave like screen; at least the stuff I use | |
unbind-key C-b | |
set-option -g prefix C-a | |
bind-key C-a last-window | |
set-window-option -g mode-keys vi | |
# Make window splitting more intuitive | |
unbind % | |
bind-key | split-window -h | |
bind-key - split-window -v | |
# Set status bar | |
set -g status-bg black | |
set -g status-fg white | |
# 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