⏱️ Add WakaTime

- Allows monitoring your coding on a dashboard
- Can be disabled by setting the value in .wakafile to 'false'
This commit is contained in:
2024-07-17 10:46:23 -04:00
parent c5610a92fe
commit e70547407b
2 changed files with 14 additions and 0 deletions
+13
View File
@@ -11,6 +11,19 @@ return {
{ import = "lazyvim.plugins.extras.util.dot" },
{ import = "lazyvim.plugins.extras.util.gitui" },
{ import = "lazyvim.plugins.extras.util.octo" },
{
"wakatime/vim-wakatime",
cond = function()
if vim.fn.filereadable(vim.fn.stdpath("config") .. "/.wakatime") == 1 then
if
vim.fn.readfile(vim.fn.stdpath("config") .. "/.wakatime")[1]
== "true"
then
return true
end
end
end,
},
{
"chrishrb/gx.nvim",
cmd = { "Browse" },