Super tmux

This commit is contained in:
z3rOR0ne 2023-04-15 23:05:33 -07:00
parent 47b265521c
commit 67a7815ba3
2 changed files with 32 additions and 1 deletions

View file

@ -25,8 +25,17 @@ set -g status-style 'bg=colour4 dim'
set -g pane-border-style "fg=colour4"
set -g pane-active-border-style 'fg=colour4'
# no status bar
set -g status off
# Navigate tmux panes with Vim style navigation Ctrl-x + hjkl
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
# Plugins
run-shell /usr/share/tmux-resurrect/resurrect.tmux
# Use tmux-resurrect with neovim
set -g @resurrect-strategy-nvim 'session'