diff options
Diffstat (limited to 'lua/custom/lazy.lua')
-rw-r--r-- | lua/custom/lazy.lua | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/lua/custom/lazy.lua b/lua/custom/lazy.lua new file mode 100644 index 0000000..4b4046d --- /dev/null +++ b/lua/custom/lazy.lua @@ -0,0 +1,20 @@ +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({ + "git", + "clone", + "--filter=blob:none", + "--branch=stable", + "https://github.com/folke/lazy.nvim.git", + lazypath, + }) +end + +vim.opt.rtp:prepend(lazypath) + +require("lazy").setup({ import = "custom/plugins" }, { + change_detection = { notify = false }, +}) |