###########################################################
# Ja's TMUX config
############################################################
# RESET ALL KEYBINDINGS AND START AGAIN (in case of a major muck-up)
#unbind all keys
#unbind-key -a
#Reset ALL tmux bindings to defauls by calling a reset conf (can be regenerated by running ~/.tmux/tmux-rest.sh
#source-file ~/.tmux/tmux.reset.conf
#Set PATH to where tmux is installed
set-environment -g PATH "/usr/local/bin:/bin:/usr/bin"
#Speed Up tmux Response Time
set -sg escape-time 0
# Enable instant config loading of .tmux.conf
unbind r
bind r source-file ~/.tmux.conf
# Change bind key from cntl-b. to cntrl-s, for example
#unbind C-b
#set -g prefix C-s
#bind C-s send-prefix
# switch panes using Alt-arrow without prefix
bind -n M-Left select-pane -L
bind -n M-Right select-pane -R
bind -n M-Up select-pane -U
bind -n M-Down select-pane -D
# don't rename windows automatically
set-option -g allow-rename off
# DESIGN TWEAKS
# don't do anything when a 'bell' rings
set -g visual-activity off
set -g visual-bell off
set -g visual-silence off
setw -g monitor-activity off
set -g bell-action none
# clock mode
setw -g clock-mode-colour yellow
# copy mode
setw -g mode-style 'fg=black bg=red bold'
# panes
set -g pane-border-style 'fg=black'
set -g pane-active-border-style 'fg=yellow'
# statusbar
set -g status-position bottom
set -g status-justify left
set -g status-style 'fg=red'
set -g status-left ''
set -g status-left-length 10
set -g status-right-style 'fg=gray'
set -g status-right '%Y-%m-%d %H:%M '
set -g status-right-length 50
setw -g window-status-current-style 'fg=black bg=yellow'
setw -g window-status-current-format ' #I #W #F '
setw -g window-status-style 'fg=red bg=black'
setw -g window-status-format ' #I #[fg=white]#W #[fg=yellow]#F '
setw -g window-status-bell-style 'fg=yellow bg=red bold'
# messages
set -g message-style 'fg=yellow bg=red bold'
#Enable mouse support
set -g mouse on
#Increase history to 5000 lines scrollback
set-option -g history-limit 50000
#Re-number panes starting with 1
set -g base-index 1
setw -g pane-base-index 1
set -g renumber-windows on
#More intuitive split commands. Use bind + | and - instead. No need to use shift!
bind | split-window -hc "#{pane_current_path}"
bind - split-window -vc "#{pane_current_path}"
bind-key "|" split-window -h -c "#{pane_current_path}"
bind-key "\\" split-window -fh -c "#{pane_current_path}"
bind-key "-" split-window -v -c "#{pane_current_path}"
bind-key "_" split-window -fv -c "#{pane_current_path}"
#Keep the current path when opening a new window
bind c new-window -c "#{pane_current_path}"
#TMUX PLUGIN MANAGER _ TPM
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-resurrect' #save = prefix + C-s, restore = prefix C-r
set -g @plugin 'tmux-plugins/tmux-continuum'
set -g @continuum-restore 'on'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'
run-shell ~/.tmux/plugins/tmux-resurrect/resurrect.tmux