diff --git a/lua/community.lua b/lua/community.lua index 231b39a..7843e0f 100644 --- a/lua/community.lua +++ b/lua/community.lua @@ -16,4 +16,5 @@ return { -- Add language support { import = "astrocommunity.pack.go" }, + { import = "astrocommunity.pack.svelte" }, } diff --git a/lua/plugins/harpoon b/lua/plugins/harpoon new file mode 100644 index 0000000..89ce9e5 --- /dev/null +++ b/lua/plugins/harpoon @@ -0,0 +1,8 @@ +return { + "ThePrimeagen/harpoon", + version = "*", + event = "VeryLazy", + config = function() require("harpoon").setup {} end, + dependences = { "nvim-lua/plenary.nvim "}, +} + diff --git a/lua/plugins/package-info.lua b/lua/plugins/package-info.lua new file mode 100644 index 0000000..f42709e --- /dev/null +++ b/lua/plugins/package-info.lua @@ -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" }, +}