Last active
July 12, 2019 18:08
-
-
Save mimoo/55952e2dce8d421c0c34 to your computer and use it in GitHub Desktop.
Tmux config
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
| # binds | |
| unbind C-b | |
| set -g prefix C-z | |
| bind C-z send-prefix | |
| # | |
| # Theme (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 | |
| # | |
| # List of plugins | |
| # | |
| set -g @plugin 'tmux-plugins/tpm' | |
| set -g @plugin 'tmux-plugins/tmux-sensible' | |
| set -g @plugin 'tmux-plugins/tmux-resurrect' | |
| set -g @plugin 'tmux-plugins/tmux-continuum' | |
| set -g @continuum-boot 'on' | |
| set -g @continuum-boot-options 'fullscreen' # boot in full screen | |
| set -g @continuum-restore 'on' | |
| # Other examples: | |
| # set -g @plugin 'github_username/plugin_name' | |
| # set -g @plugin 'git@github.com/user/plugin' | |
| # set -g @plugin 'git@bitbucket.com/user/plugin' | |
| # Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf) | |
| run '~/.tmux/plugins/tpm/tpm' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment