Configuration files
1set -g @plugin 'tmux-plugins/tpm'
2set -g @plugin 'tmux-plugins/tmux-sensible'
3set -g @plugin 'niksingh710/minimal-tmux-status'
4
5set -g @minimal-tmux-fg "#DCD7BA"
6set -g @minimal-tmux-bg "#E46876"
7set -g @minimal-tmux-justify "left"
8set -g @minimal-tmux-indicator-str " "
9
10bind | split-window -h
11bind - split-window -v
12unbind '"'
13unbind %
14
15bind -n M-Left select-pane -L
16bind -n M-Right select-pane -R
17bind -n M-Up select-pane -U
18bind -n M-Down select-pane -D
19
20set -g mouse on
21set-option -g allow-rename on
22set -g base-index 1
23setw -g pane-base-index 1
24
25bind-key -T copy-mode-vi v send-keys -X begin-selection
26bind-key -T copy-mode-vi y send-keys -X copy-selection-and-cancel
27
28run '~/.tmux/plugins/tpm/tpm'