summaryrefslogtreecommitdiff
path: root/pkgs/custom-neovim/config/lua/plugins/luasnip.lua
blob: a981de12c600260fb25b7cd2a3e4fc32214c443c (plain)
1
2
3
4
5
6
7
8
9
10
return  {
  "luasnip",
  lazy = true,
  before = function ()
    vim.cmd.packadd("friendly-snippets")
  end,
  after = function ()
    require("luasnip.loaders.from_vscode").lazy_load()
  end,
}