31 lines
766 B
Lua
31 lines
766 B
Lua
-- for developments
|
|
|
|
return {
|
|
{
|
|
"stevearc/profile.nvim",
|
|
cond = function()
|
|
return os.getenv("NVIM_PROFILE")
|
|
end,
|
|
lazy = true,
|
|
config = function()
|
|
vim.keymap.set("", "<F2>", function()
|
|
local prof = require("profile")
|
|
if prof.is_recording() then
|
|
prof.stop()
|
|
vim.ui.input(
|
|
{ prompt = "Save profile to:", completion = "file", default = "profile.json.log" },
|
|
function(filename)
|
|
if filename then
|
|
prof.export(filename)
|
|
vim.cmd([[profile stop]])
|
|
vim.notify(string.format("Wrote %s", filename))
|
|
end
|
|
end
|
|
)
|
|
else
|
|
prof.start("*")
|
|
end
|
|
end)
|
|
end,
|
|
},
|
|
}
|