dotfiles/tmux/tmux.conf

25 lines
642 B
Plaintext

unbind C-b
set -g prefix C-a
unbind r
bind r source-file '/home/g1n/.config/tmux/.tmux.conf' \; display "Reloaded"
set -g base-index 1
set-window-option -g pane-base-index 1
# Bindings to switch panes with C-(vim-bindings)
bind -n C-h select-pane -L
bind -n C-l select-pane -R
bind -n C-k select-pane -U
bind -n C-j select-pane -D
# Plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-pain-control'
set -g @plugin 'tmux-plugins/tmux-copycat'
set -g @plugin 'jimeh/tmux-themepack'
set -g @themepack 'powerline/default/green'
run '/home/g1n/.config/tmux/plugins/tpm/tpm'