You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
326 B
Lua

1 week ago
-- https://github.com/L3MON4D3/LuaSnip
-- Snippet Engine for Neovim written in Lua.
local M = { 'L3MON4D3/LuaSnip' }
M.tag = 'v2.3.0'
M.dependencies = {}
function M.config()
local luasnip = require 'luasnip'
luasnip.setup()
luasnip.config.setup({})
require("luasnip.loaders.from_snipmate").lazy_load()
end
1 week ago
return M