Added lua/lazy-bootstrap.lua

This commit is contained in:
Damjan 9000 2023-10-22 11:44:31 +02:00
parent 29c77cd7e5
commit 5623cd033f
2 changed files with 20 additions and 15 deletions

17
lua/lazy-bootstrap.lua Normal file
View file

@ -0,0 +1,17 @@
-- [[ Bootstrap lazy plugin manager ]]
-- https://github.com/folke/lazy.nvim
-- `:help lazy.nvim.txt` for more info
local lazypath = vim.fn.stdpath 'data' .. '/lazy/lazy.nvim'
if not vim.loop.fs_stat(lazypath) then
vim.fn.system {
'git',
'clone',
'--filter=blob:none',
'https://github.com/folke/lazy.nvim.git',
'--branch=stable', -- latest stable release
lazypath,
}
end
vim.opt.rtp:prepend(lazypath)
-- vim: ts=2 sts=2 sw=2 et