config.nvim/lua/custom/lazy.lua

21 lines
453 B
Lua
Raw Permalink Normal View History

2024-11-11 22:17:41 -05:00
vim.g.mapleader = " "
vim.g.maplocalleader = " "
2024-11-23 15:39:50 -05:00
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 },
})