Created
October 24, 2011 10:33
-
-
Save Govan/1308744 to your computer and use it in GitHub Desktop.
Gavin's Tmux config
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
setw -g xterm-keys on | |
set -g default-terminal "xterm-color" | |
# https://github.com/ChrisJohnsen/tmux-MacOSX-pasteboard/ | |
set-option -g default-command "reattach-to-user-namespace -l bash" | |
# default statusbar colors | |
set-option -g status-bg colour235 #base02 | |
set-option -g status-fg colour136 #yellow | |
set-option -g status-attr default | |
# default window title colors | |
set-window-option -g window-status-fg colour244 | |
set-window-option -g window-status-bg default | |
#set-window-option -g window-status-attr dim | |
# active window title colors | |
set-window-option -g window-status-current-fg colour166 #orange | |
set-window-option -g window-status-current-bg default | |
#set-window-option -g window-status-current-attr bright | |
# pane border | |
set-option -g pane-border-fg colour235 #base02 | |
set-option -g pane-active-border-fg colour240 #base01 | |
# message text | |
set-option -g message-bg colour235 #base02 | |
set-option -g message-fg colour166 #orange | |
# pane number display | |
set-option -g display-panes-active-colour colour33 #blue | |
set-option -g display-panes-colour colour166 #orange | |
# clock | |
set-window-option -g clock-mode-colour colour64 | |
# Refresh the status bar every 1 second. | |
set-option -g status-interval 1000 | |
# Enable scrollback with the mouse | |
# http://superuser.com/questions/210125/scroll-shell-output-with-mouse-in-tmux | |
setw -g mode-mouse on | |
set -g terminal-overrides 'xterm*:smcup@:rmcup@' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment