chore(nvim): add lazy dev path, enable profiling

This commit is contained in:
2025-01-02 17:36:53 +02:00
parent ee95d57ba0
commit f910dfb9ac

View File

@@ -52,9 +52,15 @@ require('lazy').setup(
-- No need to notify about changes -- No need to notify about changes
notify = false, notify = false,
}, },
dev = {
path = '~/Code/nvim', -- Load wip plugins from this path
},
install = { install = {
colorscheme = { vim.g.colors_theme }, colorscheme = { vim.g.colors_theme },
}, },
profiling = {
loader = true,
},
} }
) )