From 1155dcf30825309e3099457a97b1aeeb62825221 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Sun, 3 Aug 2025 12:08:37 +0200 Subject: [PATCH] fix(tmux): resize bindings no longer conflict with nvim --- .config/nvim/lua/plugins/extras/util/smart-splits.lua | 1 - .config/tmux/conf/binds.conf | 8 ++++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.config/nvim/lua/plugins/extras/util/smart-splits.lua b/.config/nvim/lua/plugins/extras/util/smart-splits.lua index 1c694aba..578cdcca 100644 --- a/.config/nvim/lua/plugins/extras/util/smart-splits.lua +++ b/.config/nvim/lua/plugins/extras/util/smart-splits.lua @@ -1,6 +1,5 @@ return { "mrjones2014/smart-splits.nvim", - build = "./kitty/install-kittens.bash", event = "VeryLazy", -- stylua: ignore keys = { diff --git a/.config/tmux/conf/binds.conf b/.config/tmux/conf/binds.conf index a39e2d44..c4564363 100644 --- a/.config/tmux/conf/binds.conf +++ b/.config/tmux/conf/binds.conf @@ -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 '%%'"