1
0
neovim_config/lua/snippets/all.lua
Nigel Barink a2b76f8aef
FEAT: Adding trouble and started luasnippets
TODO: Fix compe to show snippets available in insert mode
2024-03-30 16:47:37 +01:00

16 lines
270 B
Lua

local ls = require("luasnip")
local s = ls.snippet
local t = ls.text_node
-- https://github.com/L3MON4D3/LuaSnip/blob/master/DOC.md
return {
s("novel", {
t("It was a dark and stormy night on")
}),
s("no", {
t("hello world!")
}),
}