remove harpoon (RIP bozo)

This commit is contained in:
Tyler Starr 2023-12-19 00:22:10 -08:00
parent ba838d22be
commit e9331dbf0d
2 changed files with 0 additions and 20 deletions

View File

@ -1,19 +0,0 @@
local wk = require("which-key")
require("harpoon").setup({
menu = {
width = vim.api.nvim_win_get_width(0) - 4,
}
})
wk.register({
q = {
name = "+harpoon",
["1"] = { function() require("harpoon.ui").nav_file(1) end, "Harpoon 1" },
["2"] = { function() require("harpoon.ui").nav_file(2) end, "Harpoon 2" },
["3"] = { function() require("harpoon.ui").nav_file(3) end, "Harpoon 3" },
["4"] = { function() require("harpoon.ui").nav_file(4) end, "Harpoon 4" },
a = { function() require("harpoon.mark").add_file() end, "Add File" },
l = { function() require("harpoon.ui").toggle_quick_menu() end, "List Files" }
},
}, { prefix = "<leader>" })

View File

@ -17,7 +17,6 @@ return require('packer').startup(function(use)
use('nvim-lua/plenary.nvim')
-- Editing
use ('ThePrimeagen/harpoon')
use ('mbbill/undotree')
use ('folke/which-key.nvim')
use("mickael-menu/zk-nvim")