feat(nvim): Add snacks.profiler

This commit is contained in:
demenik
2025-12-17 13:17:39 +01:00
parent ce8eddeadf
commit 451a70d3c7

View File

@@ -15,4 +15,16 @@
rename.enabled = true;
};
};
extraConfigLuaPre =
# lua
''
if vim.env.PROF then
require("snacks.profiler").startup {
startup = {
event = "VimEnter",
},
}
end
'';
}