From 4a29c3cc90b48048961331de31c2229cfd71055f Mon Sep 17 00:00:00 2001 From: srdusr Date: Sat, 30 Aug 2025 00:46:23 +0200 Subject: Removed nvim subtree --- .config/nvim/lua/plugins/harpoon.lua | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 .config/nvim/lua/plugins/harpoon.lua (limited to '.config/nvim/lua/plugins/harpoon.lua') diff --git a/.config/nvim/lua/plugins/harpoon.lua b/.config/nvim/lua/plugins/harpoon.lua deleted file mode 100644 index 784ee0b..0000000 --- a/.config/nvim/lua/plugins/harpoon.lua +++ /dev/null @@ -1,34 +0,0 @@ -require("harpoon").setup({ - menu = { - width = vim.api.nvim_win_get_width(0) - 4, - }, - --keys = { - -- { "mt", function() require("harpoon.mark").toggle_file() end, desc = "Toggle File" }, - -- { "mm", function() require("harpoon.ui").toggle_quick_menu() end, desc = "Harpoon Menu" }, - -- { "mc", function() require("harpoon.cmd-ui").toggle_quick_menu() end, desc = "Command Menu" }, - -- --{ "1", function() require("harpoon.ui").nav_file(1) end, desc = "File 1" }, - -- --{ "2", function() require("harpoon.ui").nav_file(2) end, desc = "File 2" }, - -- --{ "3", function() require("harpoon.term").gotoTerminal(1) end, desc = "Terminal 1" }, - -- --{ "4", function() require("harpoon.term").gotoTerminal(2) end, desc = "Terminal 2" }, - -- --{ "5", function() require("harpoon.term").sendCommand(1,1) end, desc = "Command 1" }, - -- --{ "6", function() require("harpoon.term").sendCommand(1,2) end, desc = "Command 2" }, - --}, -}) -vim.api.nvim_set_keymap("n", "ma", ":lua require('harpoon.mark').add_file()", {}) -vim.api.nvim_set_keymap("n", "mt", ":lua require('harpoon.mark').toggle_file()", {}) -vim.api.nvim_set_keymap("n", "mq", ":lua require('harpoon.ui').toggle_quick_menu()", {}) -vim.api.nvim_set_keymap("n", "mh", ":lua require('harpoon.ui').nav_file(1)", {}) -vim.api.nvim_set_keymap("n", "mj", ":lua require('harpoon.ui').nav_file(2)", {}) -vim.api.nvim_set_keymap("n", "mk", ":lua require('harpoon.ui').nav_file(3)", {}) -vim.api.nvim_set_keymap("n", "ml", ":lua require('harpoon.ui').nav_file(4)", {}) - ---local mark = require("harpoon.mark") ---local ui = require("harpoon.ui") --- ---vim.keymap.set("n", "a", mark.add_file) ---vim.keymap.set("n", "", ui.toggle_quick_menu) --- ---vim.keymap.set("n", "", function() ui.nav_file(1) end) ---vim.keymap.set("n", "", function() ui.nav_file(2) end) ---vim.keymap.set("n", "", function() ui.nav_file(3) end) ---vim.keymap.set("n", "", function() ui.nav_file(4) end) -- cgit v1.2.3