diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf index 54f17f8..81715da 100644 --- a/tmux/.tmux.conf +++ b/tmux/.tmux.conf @@ -1,16 +1,18 @@ -#example ripped from http://blog.hawkhost.com/2010/07/02/tmux-%E2%80%93-the-terminal-multiplexer-part-2/ +# List of plugins +set -g @plugin 'tmux-plugins/tpm' +set -g @plugin 'tmux-plugins/tmux-sensible' +set -g @plugin 'jimeh/tmux-themepack' +set -g @plugin 'tmux-plugins/tmux-resurrect' +set -g @plugin 'tmux-plugins/tmux-yank' -set -g status-bg black -set -g status-fg white -set -g status-left '#[fg=green bg=black]#(hostname -s)' +# Theme +set -g @themepack 'powerline/double/magenta' -# Highlight active window -set-window-option -g window-status-current-bg red -set -g status-right '#[fg=yellow bg=black]#(uptime | cut -d "," -f 2-)' - -#Set window notifications -setw -g monitor-activity on -set -g visual-activity on - -#automatically rename windows -setw -g automatic-rename 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'