summary refs log tree commit diff
path: root/.config/nvim/lua/plugins/snippets.lua
blob: 97a445528a206b659e51d7e7bcb2b29429e9975b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
return {
  {
    'L3MON4D3/LuaSnip',
    version = 'v2.*',
    build = 'make install_jsregexp',
    config = function()
      require('config.snippets')
    end,
    dependencies = {
      "rafamadriz/friendly-snippets",
    },
  }
}