feat: include telescope-lazy and telescope-luasnip dependencies

This commit is contained in:
2024-09-15 01:25:00 -04:00
parent d140f928ca
commit 651e931ce3
3 changed files with 18 additions and 4 deletions
+10 -3
View File
@@ -12,11 +12,14 @@ return {
automatic_installation = true,
},
},
{
{ -- luasnip
import = "lazyvim.plugins.extras.coding.luasnip",
},
{ -- nvim-treesitter
"nvim-treesitter/nvim-treesitter",
opts = data.types.treesitter.opts,
},
{ --
{ -- nvim-lspconfig
"neovim/nvim-lspconfig",
opts = data.types.lspconfig.opts,
},
@@ -50,8 +53,12 @@ return {
opts = data.types.substitute,
keys = data.keys.substitute,
},
{
{ -- Markdown Preview
"iamcco/markdown-preview.nvim",
build = "cd app && yarn install",
},
{ -- Comment
"numToStr/Comment.nvim",
opts = {},
},
}
+7
View File
@@ -193,4 +193,11 @@ return {
dependencies = "tsakirist/telescope-lazy.nvim",
keys = data.keys.telescope.lazy,
},
{
"benfowler/telescope-luasnip.nvim",
module = "telescope._extensions.luasnip", -- if you wish to lazy-load
config = function()
require("telescope").load_extension("luasnip")
end,
},
}