update:nvim11->12 config

This commit is contained in:
2026-04-13 21:38:27 +09:00
parent f6cb9e99f9
commit 50b410d323
22 changed files with 1093 additions and 1251 deletions

16
nvim/lua/utils/lazy.lua Normal file
View File

@@ -0,0 +1,16 @@
local M = {}
local loaded = {}
function M.load_once(key, specs, setup)
if loaded[key] then
return
end
loaded[key] = true
vim.pack.add(specs)
if setup then
setup()
end
end
return M