mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-14 06:12:34 +00:00
14 lines
312 B
Lua
14 lines
312 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
|
|
},
|
|
-- Local development plugin for swift.
|
|
{
|
|
dir = "~/LocalProjects/swift.nvim"
|
|
}
|
|
}
|