Created
October 8, 2012 22:50
-
-
Save xatier/3855459 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
# status bar | |
set -g status-utf8 on | |
set -g status-interval 1 | |
set -g status-left-length 60 | |
set -g status-right-length 90 | |
set -g status-bg black | |
set -g status-fg white | |
set -g status-left '\o/ #[fg=red]@#H:#S' | |
set -g status-right '#[fg=brightblue]#(uptime)' | |
# window status current | |
setw -g window-status-current-bg blue | |
setw -g window-status-current-fg brightred | |
# window status | |
setw -g window-status-bg black | |
setw -g window-status-fg brightred | |
# pane border | |
set -g pane-border-fg black | |
set -g pane-active-border-fg brightblack | |
# message text | |
set -g message-bg black | |
set -g message-fg brightred | |
# pane number display | |
set -g display-panes-active-colour brightred | |
set -g display-panes-colour green | |
# clock | |
setw -g clock-mode-colour brightblue | |
# Automatically set window title | |
setw -g automatic-rename | |
# default utf8 | |
setw -g utf8 on | |
# use the vim motion keys to move between panes | |
bind h select-pane -L | |
bind j select-pane -D | |
bind k select-pane -U | |
bind l select-pane -R | |
# rebind the resize keys | |
bind -r C-h resizep -L 1 | |
bind -r C-j resizep -D 1 | |
bind -r C-k resizep -U 1 | |
bind -r C-l resizep -R 1 | |
# bind shift-LR as prev and next | |
bind -n S-right next | |
bind -n S-left prev | |
# misc | |
setw -g aggressive-resize on | |
set -g default-terminal screen-256color | |
set -s escape-time 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment