1
0

Updated tmux config

This commit is contained in:
2023-08-22 16:41:44 +03:00
parent ed163186e3
commit bff950cc3f

View File

@@ -25,3 +25,14 @@ bind -n M-Down select-pane -D
# shift arrow to switch windows
bind -n S-Left previous-window
bind -n S-Right next-window
# inherit current path
bind c new-window -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}"
bind '"' split-window -v -c "#{pane_current_path}"
# use fish shell if available
if-shell '[ -x /usr/bin/fish ]' {
set -g default-shell /usr/bin/fish
}