1
0

Only load wakatime when WAKATIME_HOME is set

This commit is contained in:
Patrick Auernig 2023-06-11 02:37:53 +02:00
parent 387c3419ce
commit c330103981

View File

@ -37,8 +37,12 @@ local function spec(use)
end
}
use "wakatime/vim-wakatime"
use {
"wakatime/vim-wakatime",
cond = function()
return not (os.getenv("WAKATIME_HOME") == nil)
end
}
-- Currently doesn't seem to have an option to make it off by default easily
use {