nixos/modules/home/tmux/.tmux.conf
Jake Hillion 2b2ebd9e0b
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
tmux: initial configuration
2023-01-11 22:16:11 +00:00

11 lines
276 B
Plaintext

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}"