migrated to lazy.nvim, cleanup and fixes

This commit is contained in:
2025-03-25 23:13:50 +08:00
parent 93e008c735
commit 19bded245e
11 changed files with 366 additions and 371 deletions

14
lua/lazy_conf.lua Normal file
View File

@@ -0,0 +1,14 @@
require("lazy").setup({
defaults = {
lazy = true,
},
spec = {
-- import your plugins
{ import = "plugins" },
},
-- Configure any other settings here. See the documentation for more details.
-- colorscheme that will be used when installing plugins.
install = { colorscheme = { "onedark" } },
-- automatically check for plugin updates
checker = { enabled = true },
})