1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- # /$$
- # | $$
- # /$$$$$$ /$$$$$$/$$$$ /$$ /$$ /$$ /$$
- # |_ $$_/ | $$_ $$_ $$| $$ | $$| $$ /$$/
- # | $$ | $$ \ $$ \ $$| $$ | $$ \ $$$$/
- # | $$ /$$| $$ | $$ | $$| $$ | $$ >$$ $$
- # | $$$$/| $$ | $$ | $$| $$$$$$/ /$$/\ $$
- # \___/ |__/ |__/ |__/ \______/ |__/ \__/
-
- #SHELL
- set -g default-command /usr/bin/zsh
- set -g default-shell /usr/bin/zsh
-
- #OPTIONS
- set -g prefix ^b
- set -g status on
- set -g pane-base-index 0
- set -g base-index 0
- set -g set-titles on
- set -g default-terminal "screen-256color"
- set-option -g set-titles-string '#{pane_current_command}'
- set-option -g history-limit 1024
- set-option -g renumber-windows on
- set-window-option -g monitor-activity off
- #set-option -g visual-activity on
-
- #BINDINGS
- bind r source-file ~/.tmux.conf
- bind -n S-Left previous-window
- bind -n S-Right next-window
- bind y set -g status
-
- #SPLIT
- set-option -g pane-active-border-fg colour0
- set-option -g pane-active-border-bg default
- set-option -g pane-border-fg colour0
- set-option -g pane-border-bg default
-
- #STATUS
- set -g status-interval 1
- set -g status-justify left
- set-option -g status-position bottom
- set-option -g status-left-length 50
- set-option -g status-right-length 20
- set -g status-bg default
- setw -g window-status-current-fg colour0
- setw -g window-status-current-bg colour2
- setw -g window-status-fg colour7
- setw -g window-status-bg colour8
- set -g status-left '#[fg=colour0,bg=colour10] #S:#I #[fg=default,bg=default] '
- setw -g window-status-format ' #W '
- setw -g window-status-current-format ' #W '
- set -g status-right ''
|