28c75e157a
most of my config has been carried over, still need to do colorizer and markdown. added a few new plugins, based off of josean's 2024 video
25 lines
536 B
Lua
25 lines
536 B
Lua
-- lazy bootstrap
|
|
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",
|
|
lazypath,
|
|
})
|
|
end
|
|
vim.opt.rtp:prepend(lazypath)
|
|
|
|
-- lazy setup
|
|
require("lazy").setup({ { import = "plugins" }, { import = "plugins.lsp" } }, {
|
|
checker = {
|
|
enabled = true,
|
|
notify = false,
|
|
},
|
|
change_detection = {
|
|
notify = false,
|
|
}
|
|
})
|