Luasnip
info
You can enable the extra with the:LazyExtras command.Plugins marked as optional will only be configured if they are installed.
Below you can find a list of included plugins and their default settings.
caution
You don't need to copy the default settings to your config.They are only shown here for reference.
LuaSnip
add luasnip
- Options
- Full Spec
opts={
history=true,
delete_check_events="TextChanged",
}
{
"L3MON4D3/LuaSnip",
lazy=true,
build=(not LazyVim.is_win())
and"echo 'NOTE: jsregexp is optional, so not a big deal if it fails to build'; make install_jsregexp"
ornil,
dependencies={
{
"rafamadriz/friendly-snippets",
config=function()
require("luasnip.loaders.from_vscode").lazy_load()
require("luasnip.loaders.from_vscode").lazy_load({ paths={ vim.fn.stdpath("config").."/snippets"}})
end,
},
},
opts={
history=true,
delete_check_events="TextChanged",
},
}
friendly-snippets
- Options
- Full Spec
opts={}
{
"rafamadriz/friendly-snippets",
config=function()
require("luasnip.loaders.from_vscode").lazy_load()
require("luasnip.loaders.from_vscode").lazy_load({ paths={ vim.fn.stdpath("config").."/snippets"}})
end,
}
LuaSnip
add snippet_forward action
- Options
- Full Spec
opts=function()
LazyVim.cmp.actions.snippet_forward=function()
ifrequire("luasnip").jumpable(1)then
vim.schedule(function()
require("luasnip").jump(1)
end)
returntrue
end
end
LazyVim.cmp.actions.snippet_stop=function()
ifrequire("luasnip").expand_or_jumpable()then-- or just jumpable(1) is fine?
require("luasnip").unlink_current()
returntrue
end
end
end
{
"L3MON4D3/LuaSnip",
opts=function()
LazyVim.cmp.actions.snippet_forward=function()
ifrequire("luasnip").jumpable(1)then
vim.schedule(function()
require("luasnip").jump(1)
end)
returntrue
end
end
LazyVim.cmp.actions.snippet_stop=function()
ifrequire("luasnip").expand_or_jumpable()then-- or just jumpable(1) is fine?
require("luasnip").unlink_current()
returntrue
end
end
end,
}
cmp_luasnip
- Options
- Full Spec
opts=nil
{"saadparwaiz1/cmp_luasnip"}
nvim-cmp(optional)
nvim-cmp integration
- Options
- Full Spec
opts=function(_, opts)
opts.snippet={
expand=function(args)
require("luasnip").lsp_expand(args.body)
end,
}
table.insert(opts.sources,{ name="luasnip"})
end
{
"hrsh7th/nvim-cmp",
optional=true,
dependencies={"saadparwaiz1/cmp_luasnip"},
opts=function(_, opts)
opts.snippet={
expand=function(args)
require("luasnip").lsp_expand(args.body)
end,
}
table.insert(opts.sources,{ name="luasnip"})
end,
-- stylua: ignore
keys={
{"<tab>",function()require("luasnip").jump(1)end, mode="s"},
{"<s-tab>",function()require("luasnip").jump(-1)end, mode={"i","s"}},
},
}
blink.cmp(optional)
blink.cmp integration
- Options
- Full Spec
opts={
snippets={
preset="luasnip",
},
}
{
"saghen/blink.cmp",
optional=true,
opts={
snippets={
preset="luasnip",
},
},
}