fix(tmux): resize bindings no longer conflict with nvim

This commit is contained in:
Sergio Laín 2025-08-03 12:08:37 +02:00
parent 2a3bb1b2b0
commit 1155dcf308
No known key found for this signature in database
GPG key ID: 51BB28D8B42FB438
2 changed files with 4 additions and 5 deletions

View file

@ -1,6 +1,5 @@
return {
"mrjones2014/smart-splits.nvim",
build = "./kitty/install-kittens.bash",
event = "VeryLazy",
-- stylua: ignore
keys = {

View file

@ -36,10 +36,10 @@ bind-key k select-pane -U
bind-key j select-pane -D
# Resize each pane
bind -n C-Left resize-pane -L 5
bind -n C-Right resize-pane -R 5
bind -n C-Up resize-pane -U 2
bind -n C-Down resize-pane -D 2
bind-key -n M-Left resize-pane -L 5
bind-key -n M-Right resize-pane -R 5
bind-key -n M-Up resize-pane -U 2
bind-key -n M-Down resize-pane -D 2
# Change window name
bind-key r command-prompt -I "#W" "rename-window '%%'"