Created
January 28, 2014 19:42
-
-
Save skout23/8674683 to your computer and use it in GitHub Desktop.
This file contains 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
# act like GNU screen | |
unbind C-b | |
set -g prefix C-a | |
# look good | |
set -g default-terminal "screen-256color" | |
# Allows for faster key repetition | |
set -s escape-time 0 | |
# Set 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 off | |
# Highlight active window | |
set-window-option -g window-status-current-bg red | |
# resize a lot | |
setw -g aggressive-resize on | |
# lots of scroll back | |
set -g history-limit 10000 | |
# mouse scrolling | |
setw -g mode-mouse on |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment