Enable basic plugins management
This commit is contained in:
parent
912261ccae
commit
595be4a43d
1 changed files with 15 additions and 0 deletions
15
vim/lua/plugins.lua
Normal file
15
vim/lua/plugins.lua
Normal file
|
@ -0,0 +1,15 @@
|
|||
function use(plugins)
|
||||
return require('packer').startup(function(use)
|
||||
for _, plugin in ipairs(plugins) do
|
||||
use(plugin)
|
||||
end
|
||||
end)
|
||||
end
|
||||
|
||||
use {
|
||||
'wbthomason/packer.nvim';
|
||||
'neovim/nvim-lspconfig';
|
||||
'pigpigyyy/Yuescript-vim';
|
||||
'ziglang/zig.vim';
|
||||
'neovim/nvim-lspconfig';
|
||||
}
|
Loading…
Reference in a new issue