aboutsummaryrefslogtreecommitdiff
path: root/modules/home/i3wm/nord-blue
diff options
context:
space:
mode:
Diffstat (limited to 'modules/home/i3wm/nord-blue')
-rw-r--r--modules/home/i3wm/nord-blue/nvim.nix11
1 files changed, 0 insertions, 11 deletions
diff --git a/modules/home/i3wm/nord-blue/nvim.nix b/modules/home/i3wm/nord-blue/nvim.nix
index c2b06e5..14e86e5 100644
--- a/modules/home/i3wm/nord-blue/nvim.nix
+++ b/modules/home/i3wm/nord-blue/nvim.nix
@@ -50,17 +50,6 @@
end, { desc = "Find files (cwd)" })
-- TAB KEYBINDS (t-based navigation)
-
- -- Open in new tab with "t" in lua file tree
- vim.keymap.set("n", "t", function()
- local node = api.tree.get_node_under_cursor()
- if node and node.type == "file" then
- vim.cmd("tabnew " .. node.absolute_path)
- end
- end, opts("Open in new tab"))
- -- New tab
- vim.keymap.set("n", "tt", "<cmd>tabnew<CR>", { desc = "New tab" })
-
-- Close tab
vim.keymap.set("n", "tc", "<cmd>tabclose<CR>", { desc = "Close tab" })