dotfiles/tmux/tmux.conf.symlink

16 lines
452 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}"
bind % split-window -h -c '#{pane_current_path}'
bind '"' split-window -v -c '#{pane_current_path}'