diff --git a/.config/tmux/conf/binds.conf b/.config/tmux/conf/binds.conf index 0186daac..955d576d 100644 --- a/.config/tmux/conf/binds.conf +++ b/.config/tmux/conf/binds.conf @@ -53,29 +53,5 @@ bind-key M-q kill-session bind -r "<" swap-window -d -t -1 bind -r ">" swap-window -d -t +1 -# Smart pane switching with awareness of Neovim splits. -bind-key -n C-h if -F "#{@pane-is-vim}" 'send-keys C-h' 'select-pane -L' -bind-key -n C-j if -F "#{@pane-is-vim}" 'send-keys C-j' 'select-pane -D' -bind-key -n C-k if -F "#{@pane-is-vim}" 'send-keys C-k' 'select-pane -U' -bind-key -n C-l if -F "#{@pane-is-vim}" 'send-keys C-l' 'select-pane -R' - -# Smart pane resizing with awareness of Neovim splits. -bind-key -n C-left if -F "#{@pane-is-vim}" 'send-keys C-left' 'resize-pane -L 5' -bind-key -n C-down if -F "#{@pane-is-vim}" 'send-keys C-down' 'resize-pane -D 5' -bind-key -n C-up if -F "#{@pane-is-vim}" 'send-keys C-up' 'resize-pane -U 5' -bind-key -n C-right if -F "#{@pane-is-vim}" 'send-keys C-right' 'resize-pane -R 5' - -tmux_version='$(tmux -V | sed -En "s/^tmux ([0-9]+(.[0-9]+)?).*/\1/p")' -if-shell -b '[ "$(echo "$tmux_version < 3.0" | bc)" = 1 ]' \ - "bind-key -n 'C-\\' if -F \"#{@pane-is-vim}\" 'send-keys C-\\' 'select-pane -l'" -if-shell -b '[ "$(echo "$tmux_version >= 3.0" | bc)" = 1 ]' \ - "bind-key -n 'C-\\' if -F \"#{@pane-is-vim}\" 'send-keys C-\\\\' 'select-pane -l'" - -bind-key -T copy-mode-vi 'C-h' select-pane -L -bind-key -T copy-mode-vi 'C-j' select-pane -D -bind-key -T copy-mode-vi 'C-k' select-pane -U -bind-key -T copy-mode-vi 'C-l' select-pane -R -bind-key -T copy-mode-vi 'C-\' select-pane -l - # Projects bind-key Enter popup -E -h 80% -w 80% "dev" diff --git a/.config/tmux/conf/plugins.conf b/.config/tmux/conf/plugins.conf index 697d48d2..a543a9e2 100644 --- a/.config/tmux/conf/plugins.conf +++ b/.config/tmux/conf/plugins.conf @@ -5,6 +5,7 @@ set -g @plugin 'catppuccin/tmux#v0.3.0' set -g @plugin 'omerxx/tmux-sessionx' set -g @plugin 'wfxr/tmux-fzf-url' set -g @plugin 'omerxx/tmux-floax' +set -g @plugin 'mrjones2014/smart-splits.nvim' # Plugin Options # Catppuccin @@ -52,3 +53,9 @@ set -g @fzf-url-bind 'u' set -g @floax-bind '-n M-p' set -g @floax-border-color 'white' set -g @floax-text-color 'white' + +# smart-splits +set -g @smart-splits_resize_left_key 'C-left' +set -g @smart-splits_resize_down_key 'C-down' +set -g @smart-splits_resize_up_key 'C-up' +set -g @smart-splits_resize_right_key 'C-right'