You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
753 B
36 lines
753 B
set -g default-terminal "screen-256color" |
|
|
|
set-option -g default-shell /usr/bin/fish |
|
|
|
set -g prefix C-a |
|
unbind C-b |
|
bind-key C-a send-prefix |
|
|
|
unbind % |
|
bind | split-window -h |
|
|
|
unbind '"' |
|
bind - split-window -v |
|
|
|
unbind r |
|
bind r source-file ~/.tmux.conf |
|
|
|
bind -r j resize-pane -D 5 |
|
bind -r k resize-pane -U 5 |
|
bind -r l resize-pane -R 5 |
|
bind -r h resize-pane -L 5 |
|
|
|
bind -r m resize-pane -Z |
|
set -g mouse on |
|
|
|
set -g @plugin 'tmux-plugins/tpm' |
|
|
|
set -g @plugin 'christoomey/vim-tmux-navigator' |
|
# set -g @plugin 'jimeh/tmux-themepack' |
|
# set -g @themepack 'powerline/default/cyan' |
|
set -g @plugin 'tmux-plugins/tmux-resurrect' |
|
set -g @plugin 'tmux-plugins/tmux-continuum' |
|
|
|
source-file $HOME/.tmux/colors/base16-gruvbox-dark-hard.conf |
|
|
|
run '~/.tmux/plugins/tpm/tpm'
|
|
|