mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-14 14:12:41 +00:00
13 lines
296 B
Lua
13 lines
296 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
|
|
},
|
|
-- {
|
|
-- dir = "~/LocalProjects/plugins/m-housh/swift.nvim"
|
|
-- }
|
|
}
|