added harpoon, svelte support and package-info

This commit is contained in:
John O'Keefe 2024-09-08 11:21:06 -04:00
parent d58fe1865a
commit 3e9ae45e18
3 changed files with 20 additions and 0 deletions

View File

@ -16,4 +16,5 @@ return {
-- Add language support
{ import = "astrocommunity.pack.go" },
{ import = "astrocommunity.pack.svelte" },
}

8
lua/plugins/harpoon Normal file
View File

@ -0,0 +1,8 @@
return {
"ThePrimeagen/harpoon",
version = "*",
event = "VeryLazy",
config = function() require("harpoon").setup {} end,
dependences = { "nvim-lua/plenary.nvim "},
}

View File

@ -0,0 +1,11 @@
return {
"vuki656/package-info.nvim",
version = "*",
event = "VeryLazy",
config = function()
require("package-info").setup {
package_manager = "npm",
}
end,
dependences = { "MunifTanjim/nui.nvim" },
}