feat: include telescope-lazy and telescope-luasnip dependencies
This commit is contained in:
+1
-1
@@ -664,7 +664,7 @@ function M.is_installed(plugins, simple)
|
||||
end
|
||||
end
|
||||
|
||||
-- Function to create a floating terminal window
|
||||
---@function Function to create a floating terminal window
|
||||
function M.open_floating_terminal()
|
||||
-- Create a scratch buffer specifically for the terminal
|
||||
local buf = vim.api.nvim_create_buf(false, true) -- Create an unnamed, non-file, scratch buffer
|
||||
|
||||
+10
-3
@@ -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 = {},
|
||||
},
|
||||
}
|
||||
|
||||
@@ -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,
|
||||
},
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user