summary refs log tree commit diff
path: root/.config/nvim/lua/plugins/snippets.lua
blob: 71276a02801969e1ee759e6871351c609564db70 (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',
    },
  },
}