You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
557 B
29 lines
557 B
2 years ago
|
local lazy = {}
|
||
|
|
||
|
lazy.path = vim.fn.stdpath('data') .. '/lazy/lazy.nvim'
|
||
|
|
||
|
function lazy.install(path)
|
||
|
if not vim.loop.fs_stat(path) then
|
||
|
print('Installing lazy.nvim....')
|
||
|
vim.fn.system({
|
||
|
'git',
|
||
|
'clone',
|
||
|
'--filter=blob:none',
|
||
|
'https://github.com/folke/lazy.nvim.git',
|
||
|
'--branch=stable', -- latest stable release
|
||
|
path,
|
||
|
})
|
||
|
end
|
||
|
end
|
||
|
|
||
|
function lazy.setup(plugins)
|
||
|
lazy.install(lazy.path)
|
||
|
|
||
|
vim.opt.rtp:prepend(lazy.path)
|
||
|
require('lazy').setup(plugins, lazy.opts)
|
||
|
end
|
||
|
|
||
|
lazy.setup({
|
||
|
{import = 'plugins'}
|
||
|
})
|