Skip to content
Snippets Groups Projects
tex.lua 214 B
Newer Older
-- Place this in ${HOME}/.config/nvim/LuaSnip/all.lua
return {
  -- A snippet that expands the trigger "hi" into the string "Hello, world!".
  require("luasnip").snippet({ trig = "hi" }, { t("Hello, world!") }),
}