dotfiles/tmux/tmux.conf.symlink

15 lines
353 B
Text

# pane switching
bind C-h select-pane -L
bind C-j select-pane -D
bind C-k select-pane -U
bind C-l select-pane -R
bind C-\ select-pane -l
# easily toggle synchronization (mnemonic: e is for echo)
bind e setw synchronize-panes on
bind E setw synchronize-panes off
# start a pane in the right fucking folder
bind c new-window -c "#{pane_current_path}"