Tmux-config
unbind ^b
set -g prefix 'C-a'
bind r source-file ~/.tmux.conf \; display-message "Config reloaded"
set -g status-bg black
set -g status-fg white
set-option -g status-interval 5
set-window-option -g window-status-current-bg green
unbind '"'
bind j splitw -v -c '#{pane_current_path}'
unbind %
bind k splitw -h -c '#{pane_current_path}'
bind -r - select-pane -L
bind -r = select-pane -R
bind -r 9 select-pane -U
bind -r 0 select-pane -D
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/vim-tmux'
set -g @plugin 'nhdaly/tmux-scroll-copy-mode'
set -g @plugin 'tmux-plugins/tmux-resurrect'
set-option -g mouse on
set -g @resurrect-save-bash-history 'on'
set -g @resurrect-capture-pane-contents 'on'
set -g @resurrect-strategy-vim 'session'
set -g @resurrect-save 'S'
set -g @resurrect-restore 'R'
run '~/.tmux/plugins/tpm/tpm'