File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed
Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,6 @@ set -g default-terminal "tmux-256color"
66unbind C-b
77set -g prefix C-Space
88bind C-Space send-prefix
9- bind Space last-window
109
1110# Start numbering at 1
1211set -g base-index 1
@@ -56,6 +55,13 @@ bind -T copy-mode-vi 'C-k' select-pane -U
5655bind -T copy-mode-vi ' C-l' select-pane -R
5756bind C-l send C-l
5857
58+ # Open pane in current directory
59+ bind % split-window -h -c " #{pane_current_path}"
60+ bind ' "' split-window -v -c " #{pane_current_path}"
61+
62+ # Cycle through layouts
63+ bind -r Space next-layout
64+
5965# Escape to enter copy mode, v to selection, y to yank, p to paste
6066bind Escape copy-mode
6167bind -T copy-mode-vi v send -X begin-selection
@@ -67,10 +73,6 @@ bind p paste-buffer -p
6773# Reload configuration
6874bind r source-file ~ /.config/tmux/tmux.conf \; display-message " Config reloaded"
6975
70- # Open pane in current directory
71- bind % split-window -h -c " #{pane_current_path}"
72- bind ' "' split-window -v -c " #{pane_current_path}"
73-
7476# Configure catppuccin plugin
7577source-file -q ~ /.config/tmux/theme.conf
7678set -g @catppuccin_flavor " mocha"
You can’t perform that action at this time.
0 commit comments