Hi, I'm using neovim with this config
---@type LazySpec
return {
"wakatime/vim-wakatime",
init = function()
vim.g.loaded_wakatime = true
end,
---@module 'wakatime'
---@type wakatime.Config
opts = nil,
config = true,
}
I disable vim load, and load the lua code only. but this
|
vim.notify('[WakaTime] Initialized.', vim.log.levels.INFO) |
is quite anoying to me. Can we have an option to diable that notification? Thank you.