Split modules and plugins apart

This commit is contained in:
Michael Mroczka 2023-11-12 07:15:41 -06:00
parent e75403a3c3
commit 6465996cfe
10 changed files with 524 additions and 492 deletions

View file

@ -0,0 +1,16 @@
-- [[ Install `lazy.nvim` plugin manager ]]
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)
-- The line beneath this is called `modeline`. See `:help modeline`
-- vim: ts=2 sts=2 sw=2 et