Created
July 25, 2013 03:47
-
-
Save Nokogiri/6076770 to your computer and use it in GitHub Desktop.
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
# tmux config | |
# jwc | |
# see my blog post about tmux for more information | |
# http://blog.jwcxz.com/?p=517 | |
set -g bell-action any | |
set -g default-terminal screen-256color | |
set -g display-panes-colour red | |
set -g message-bg cyan | |
set -g message-fg white | |
#set -g mouse-select-pane on | |
set -g pane-border-bg default | |
set -g pane-border-fg cyan | |
set -g pane-active-border-bg default | |
set -g pane-active-border-fg white | |
set -g repeat-time 250 | |
set -g set-titles on | |
set -g status-bg cyan | |
set -g status-fg white | |
set -g status-keys vi | |
set -g status-left '[#I:#P]' | |
# normal: month/day hour:minute | |
set -g status-right '%m/%d %H:%M' | |
# desktop: temp month/day hour:minute | |
#set -g status-right '#(sensors -A acpitz-virtual-0 | grep temp | cut -d+ -f2 | cut -d. -f1)C %m/%d %H:%M' | |
# laptop: bat% (battime) temp speed month/day hour:minute | |
#set -g status-right '#(acpi | cut -d" " -f4,5 | sed "s/, \\(.*\\\)/\\/\\1/g") #(acpi -t | cut -d" " -f4 | cut -d"." -f1)C #(cpufreq-info -mf | sed "s/[ Hz]//g") %m/%d %H:%M' | |
set -g visual-activity on | |
set -g visual-bell on | |
setw -g mode-bg red | |
setw -g mode-attr bright | |
setw -g mode-fg white | |
setw -g mode-keys vi | |
#setw -g mode-mouse on | |
setw -g monitor-activity on | |
setw -g window-status-current-fg white | |
setw -g window-status-current-attr bright | |
setw -g window-status-current-bg black | |
set -g prefix ^A | |
bind-key ^A send-prefix | |
bind-key a send-prefix | |
bind-key a last-window | |
bind-key ^D detach-client | |
bind-key v split-window -h | |
bind-key ^V split-window -h | |
bind-key s split-window | |
bind-key ^S split-window | |
bind-key @ confirm-before kill-window | |
bind-key h select-pane -L | |
bind-key ^H select-pane -L | |
bind-key k select-pane -U | |
bind-key ^K select-pane -U | |
bind-key j select-pane -D | |
bind-key ^J select-pane -D | |
bind-key l select-pane -R | |
bind-key ^L select-pane -R | |
bind-key J resize-pane -D 5 | |
bind-key K resize-pane -U 5 | |
bind-key H resize-pane -L 5 | |
bind-key L resize-pane -R 5 | |
bind-key M-j resize-pane -D | |
bind-key M-k resize-pane -U | |
bind-key M-h resize-pane -L | |
bind-key M-l resize-pane -R | |
set-option -g set-titles on | |
set-option -g set-titles-string '[#S:#I #T] #W' | |
#set-option -g set-titles-string '#H:#S.#I.#P #W #T' | |
#source '/usr/share/tmux/powerline.conf' | |
#### COLOUR (Solarized 256) | |
# 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 #base0 | |
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 #green |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment