Created
April 24, 2012 02:26
-
-
Save jtimberman/2475583 to your computer and use it in GitHub Desktop.
solarize-ified colors a bit more, looks decent in light and dark (iterm2)
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
# bindings | |
unbind C-a | |
set -g prefix C-z | |
bind C-z send-prefix | |
unbind [ | |
unbind % | |
unbind '"' | |
bind Escape copy-mode | |
bind r source-file ~/.tmux.conf | |
bind h split-window -h | |
bind v split-window -v | |
setw -g mode-keys emacs | |
setw -g mode-mouse off | |
set -g history-limit 20000 | |
set -g default-terminal "screen-256color" | |
setw -g monitor-activity on | |
set -g visual-activity off | |
## Color customization | |
# solarized colors, noted but not using them because iterm2 does the | |
# right thing. | |
# | |
# color15 - white | |
# color33 - blue | |
# color64 - green | |
# color136 - yellow | |
# color166 - orange | |
# default statusbar colors | |
set -g status-fg default | |
set -g status-bg default | |
# default window title colors | |
set-window-option -g window-status-fg default | |
set-window-option -g window-status-bg default | |
set-window-option -g window-status-attr default | |
# active window title colors | |
set-window-option -g window-status-current-fg white | |
set-window-option -g window-status-current-bg blue | |
set -g status-left-length 40 | |
set -g status-left '#[fg=red]#H#[fg=default] #[fg=green]|#[default]' | |
set -g status-right '#[fg=green]| #[fg=blue]#S #[fg=green]|' | |
# colors in copy mode | |
set-window-option -g mode-bg green | |
set-window-option -g mode-fg white | |
## EOF Colors |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment