bunch of config files

This commit is contained in:
2024-03-30 01:19:14 +01:00
parent b9262745cb
commit a1354d13fd
6 changed files with 120 additions and 4 deletions

View File

@ -3,7 +3,13 @@ unbind-key C-b
set-option -g prefix C-a
bind-key C-a send-prefix
# split panes using |<7C>(vertically) and - (horizontally)
# use command prompt shortcut similar to vscode
bind-key -n C-p command-prompt
# since tmux prefix is now ctrl+a, use ctrl+b to send ctrl+a to program
bind-key -n C-b send C-a
# split panes using | (vertically) and - (horizontally)
bind / split-window -h -c "#{pane_current_path}"
bind - split-window -v -c "#{pane_current_path}"
bind c new-window -c "#{pane_current_path}"