mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-14 14:12:41 +00:00
10 lines
224 B
Lua
10 lines
224 B
Lua
-- This file contains plugin's that don't require much configuration.
|
|
return {
|
|
{
|
|
"hrsh7th/vim-vsnip",
|
|
config = function()
|
|
vim.g.vsnip_snippet_dir = os.getenv('HOME') .. '/.config/nvim/snippets/'
|
|
end
|
|
},
|
|
}
|