Created
November 14, 2012 16:19
-
-
Save craftzdog/4073071 to your computer and use it in GitHub Desktop.
my tmux conf
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
unbind C-b | |
set-option -g prefix C-t | |
#bind t send-key C-t | |
# basic settings | |
#set-option utf8-default on | |
#set-option -g mouse-select-pane | |
set-window-option -g mode-keys vi | |
#set-window-option -g utf8 on | |
# look'n feel | |
set-option -g status-fg cyan | |
set-option -g status-bg black | |
set-window-option -g window-status-attr "underscore" | |
set-window-option -g window-status-bg blue | |
set-window-option -g window-status-fg green | |
set-window-option -g window-status-current-attr "bold" | |
set-window-option -g window-status-current-fg white | |
set-window-option -g window-status-current-bg cyan | |
#set -g pane-active-border-fg white | |
#set -g pane-active-border-bg blue | |
#### COLOUR | |
# 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 colour136 #yellow | |
set-option -g pane-active-border-bg colour235 #base02 | |
# 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 #green |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment