From 92fe04a180e3cfca16c3ef4150a5a1eec879b665 Mon Sep 17 00:00:00 2001 From: stefan Date: Tue, 20 May 2025 15:17:01 -0400 Subject: (form) sync --- modules/neovim/nvim/lua/config/keybinds.lua | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'modules/neovim/nvim/lua/config/keybinds.lua') diff --git a/modules/neovim/nvim/lua/config/keybinds.lua b/modules/neovim/nvim/lua/config/keybinds.lua index 5481d37..551fc14 100644 --- a/modules/neovim/nvim/lua/config/keybinds.lua +++ b/modules/neovim/nvim/lua/config/keybinds.lua @@ -37,6 +37,14 @@ nmap('wm', '', { desc = "Focus window left of the current one" nmap('wn', '', { desc = "Focus window below the current one" }) nmap('we', '', { desc = "Focus window above the current one" }) nmap('wi', '', { desc = "Focus window right of the current one" }) +-- nmap('', '', { desc = "Focus window left of the current one" }) +-- nmap('', '', { desc = "Focus window below the current one" }) +-- nmap('', '', { desc = "Focus window above the current one" }) +-- nmap('', '', { desc = "Focus window right of the current one" }) +nmap('', function() require("tmux").move_left() end, { desc = "Focus window left of the current one" }) +nmap('', function() require("tmux").move_bottom() end, { desc = "Focus window below the current one" }) +nmap('', function() require("tmux").move_top() end, { desc = "Focus window above the current one" }) +nmap('', function() require("tmux").move_right() end, { desc = "Focus window right of the current one" }) -- nmap('fo', 'Telescope find_files', { silent = true }) nmap('fo', 'FzfLua files', { silent = true }) -- cgit v1.2.3