nixos/modules/home/tmux/.tmux.conf

11 lines
276 B
Plaintext
Raw Normal View History

2023-01-11 20:22:35 +00:00
setw -g mouse on
# Bindings
bind C-Y set-window-option synchronize-panes
bind -n C-k clear-history
# New panes in the same directory
bind '"' split-window -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}"
bind c new-window -c "#{pane_current_path}"