diff options
| author | Natasha Moongrave <natasha@256phi.eu> | 2026-03-04 17:40:32 +0100 |
|---|---|---|
| committer | Natasha Moongrave <natasha@256phi.eu> | 2026-03-04 17:40:32 +0100 |
| commit | fae218ae7391ae4f7d891e9063d238ef63f4a085 (patch) | |
| tree | d203ecdfb05b1c1cd129fb2c3a370ed6bcdba092 | |
| parent | bccafb4bb100a051b09b6935578fd6c2d2708aa1 (diff) | |
removed old broken keybind in nvim.nix
| -rw-r--r-- | modules/home/i3wm/nord-blue/nvim.nix | 11 |
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" }) |
