# List of plugins set -g @plugin 'wfxr/tmux-power' set -g @plugin 'tmux-plugins/tpm' set -g @plugin 'tmux-plugins/tmux-sensible' # 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' # theme set -g @tmux_power_theme 'snow' set -g mouse on set-option -g status-interval 5 set-option -g automatic-rename on set-option -g automatic-rename-format "#{?#{==:#{pane_current_command},zsh},#{b:pane_current_path},#{pane_current_command}}" # normal colors set -g default-terminal "tmux-256color" # renumber panes set-option -g renumber-windows on # Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf) run '~/.tmux/plugins/tpm/tpm' set -gq window-status-format "#[fg=#262626,bg=#3a3a3a]#[fg=#ffffff] #I:#W #[fg=#3a3a3a,bg=#262626]" set -gq window-status-current-format "#[fg=#262626,bg=#ffffff]#[fg=#262626,bold] #I:#W #[fg=#ffffff,bg=#262626,nobold]" # bindings #bind-key -T prefix v command-prompt "move-window -d -t '%%'" bind-key -n C-S-Left swap-window -t -1\; select-window -t -1 bind-key -n C-S-Right swap-window -t +1\; select-window -t +1 bind-key -T prefix - split-window bind-key -T prefix | split-window -h