My initial custom config over the template

This commit is contained in:
juanmagalhaes 2023-07-03 17:09:40 -03:00
parent 6967424521
commit 87f7c41a6d
4 changed files with 198 additions and 201 deletions

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

@ -0,0 +1,15 @@
-- Install package 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)