Created
April 10, 2018 17:42
-
-
Save pldubouilh/40266fbe04a228937215f7e6f09fd01b to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| set-option -g status | |
| set-option -g status-position bottom | |
| set-window-option -g xterm-keys on | |
| bind-key -n S-Left previous-window | |
| bind-key -n S-Right next-window | |
| unbind C-b | |
| set -g prefix C-z | |
| bind C-z send-prefix | |
| set -g mouse on | |
| bind -n C-Left select-pane -L | |
| bind -n C-Right select-pane -R | |
| bind -n C-Up select-pane -U | |
| bind -n C-Down select-pane -D | |
| set -g pane-border-fg default | |
| set -g pane-active-border-fg red | |
| set-option -g status-fg white | |
| set-option -g status-bg default | |
| set-option -g status-attr default | |
| set-window-option -g window-status-fg "#666666" | |
| set-window-option -g window-status-bg default | |
| set-window-option -g window-status-attr default | |
| set-window-option -g window-status-current-fg red | |
| set-window-option -g window-status-current-bg default | |
| set-window-option -g window-status-current-attr default | |
| set-option -g message-fg white | |
| set-option -g message-bg black | |
| set-option -g message-attr bright | |
| set -g status-left " " | |
| set -g status-justify left | |
| setw -g window-status-format ' #(echo "#{pane_current_command}") ' | |
| setw -g window-status-current-format ' #(echo "#{pane_current_command}") ' | |
| set -g status-right " " | |
| #set -g lock-after-time 3000 | |
| #set -g lock-command "cmatrix -s -C blue" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment