using multiple folders to organize plugins

This commit is contained in:
aminnairi
2023-11-28 11:57:39 +01:00
parent 384d87e805
commit 384e22c689
26 changed files with 1058 additions and 1077 deletions
+16
View File
@@ -0,0 +1,16 @@
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)
require("lazy").setup("settings.lazy.plugins")