Re-arrange neovim config

This commit is contained in:
2023-09-28 09:45:52 -04:00
parent 9acb92154a
commit 3896bab4fb
15 changed files with 6 additions and 6 deletions

View File

@@ -0,0 +1,26 @@
-- Plugins
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)
vim.g.mapleader = ' '
vim.g.maplocalleader = ' '
require("lazy").setup(
'user.plugin-config',
{
dev = {
path = '~/LocalProjects/plugins',
fallback = true
}
}
)