Created
March 23, 2012 05:02
-
-
Save 3kwa/2167021 to your computer and use it in GitHub Desktop.
my tmux conf
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
# ctrl-b -> ctrl-a | |
set -g prefix C-a | |
# ctrl-a ctrl-a last window | |
bind-key C-a last-window | |
# we are humans numbering from 1 | |
set -g base-index 1 | |
# faster input (not waiting for escape) | |
set -s escape-time 0 | |
# screen like window size | |
setw -g aggressive-resize on | |
# more intuitive window split | |
bind | split-window -h | |
bind - split-window -v | |
# nices looking status bar | |
set -g status-bg black | |
set -g status-fg white | |
set -g status-left "" | |
set -g status-right "#[fg=yellow]#H" | |
set-window-option -g window-status-current-bg red | |
# activity monitoring in non active windows | |
setw -g monitor-activity on | |
set -g visual-activity on |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment