config.nvim/lua/custom/lazy.lua

21 lines
452 B
Lua
Raw Normal View History

2024-11-11 22:17:41 -05:00
vim.g.mapleader = " "
vim.g.maplocalleader = " "
local lazypath = vim.fn.stdpath "data" .. "/lazy/lazy.nvim"
if not (vim.uv or vim.loop).fs_stat(lazypath) then
vim.fn.system({
2024-11-11 22:17:41 -05:00
"git",
"clone",
"--filter=blob:none",
"--branch=stable",
"https://github.com/folke/lazy.nvim.git",
lazypath,
})
2024-11-11 22:17:41 -05:00
end
vim.opt.rtp:prepend(lazypath)
require("lazy").setup({ import = "custom/plugins" }, {
change_detection = { notify = false },
})