Created
November 11, 2013 23:36
-
-
Save kaimallea/7422604 to your computer and use it in GitHub Desktop.
Tmux Config
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-option -g default-terminal "screen-256color" | |
set-option -s escape-time 1 | |
set-option -g base-index 1 | |
# Bind v/h-split | |
bind | split-window -h | |
bind - split-window -v | |
# Use Ctrl+A instead of default Ctrl+B | |
set -g prefix C-a | |
# Use Ctrl-A twice to send combo to app | |
bind C-a send-prefix | |
# Change status bar colors | |
set -g status-fg white | |
set -g status-bg black | |
setw -g window-status-fg cyan | |
setw -g window-status-bg default | |
setw -g window-status-attr dim | |
setw -g window-status-current-fg white | |
setw -g window-status-current-bg red | |
setw -g window-status-current-attr bright | |
set -g pane-border-fg green | |
set -g pane-border-bg black | |
set -g pane-active-border-fg white | |
set -g pane-active-border-bg yellow | |
set -g message-fg white | |
set -g message-bg black | |
set -g message-attr bright | |
set -g status-utf8 on | |
set -g status-left-length 40 | |
set -g status-left "#[fg=green]Session: #S #[fg=yellow]#I #[fg=cyan]#P" | |
set -g status-justify centre | |
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