FEAT: Added lualine and harpoon
FIX: Fixed fidget setup FIX: Added hopefully proper lsp config
This commit is contained in:
22
lua/barink/plugins/harpoon.lua
Normal file
22
lua/barink/plugins/harpoon.lua
Normal file
@@ -0,0 +1,22 @@
|
||||
return {
|
||||
"ThePrimeagen/harpoon",
|
||||
branch= "harpoon2",
|
||||
dependencies = {{"nvim-lua/plenary.nvim"}},
|
||||
config = function()
|
||||
local harpoon = require("harpoon")
|
||||
harpoon.setup()
|
||||
|
||||
vim.keymap.set("n", "<leader>a", function() harpoon:list():append() end)
|
||||
vim.keymap.set("n", "<C-e>", function() harpoon.ui:toggle_quick_menu(harpoon:list()) end)
|
||||
|
||||
vim.keymap.set("n", "<leader>1", function() harpoon:list():select(1) end)
|
||||
vim.keymap.set("n", "<leader>2", function() harpoon:list():select(2) end)
|
||||
vim.keymap.set("n", "<leader>3", function() harpoon:list():select(3) end)
|
||||
vim.keymap.set("n", "<leader>4", function() harpoon:list():select(4) end)
|
||||
|
||||
|
||||
vim.keymap.set("n", "<C-S-Z>", function() harpoon:list():prev() end)
|
||||
vim.keymap.set("n", "<C-S-X>", function() harpoon:list():next() end)
|
||||
|
||||
end
|
||||
}
|
||||
Reference in New Issue
Block a user