Created
January 23, 2019 13:59
-
-
Save plainOldCode/da50b7cf42ee5cbffbc25f77a6baf3b8 to your computer and use it in GitHub Desktop.
tmux ubuntu...
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
set-option -g default-terminal "screen-256color" | |
set-option -g status-utf8 on | |
set-option -g status on | |
set-option -g status-interval 2 | |
set-option -g status-justify "left" | |
set-option -g status-left-length 60 | |
set-option -g status-right-length 90 | |
set-option -g status-left "#(~/git/open-source/tmux-powerline/status-left.sh)" | |
set-option -g status-right "#(~/git/open-source/tmux-powerline/status-right.sh)" | |
bind C-[ run '~/git/open-source/tmux-powerline/mute_statusbar.sh left' # Mute left statusbar. | |
bind C-] run '~/git/open-source/tmux-powerline/mute_statusbar.sh right' # Mute right statusbar. | |
# List of plugins | |
set -g @plugin 'tmux-plugins/tpm' | |
set -g @plugin 'tmux-plugins/tmux-sensible' | |
set -g @plugin 'jimeh/tmux-themepack' | |
set -g @themepack 'powerline/block/blue' | |
# Other examples: | |
# set -g @plugin 'github_username/plugin_name' | |
# set -g @plugin '[email protected]/user/plugin' | |
# set -g @plugin '[email protected]/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