nvim: Add time tracker plugin

This commit is contained in:
Andreas Tsouchlos 2024-10-16 17:20:02 +02:00
parent d1f835ff1c
commit b9eed4c40f

View File

@ -0,0 +1,10 @@
return {
"3rd/time-tracker.nvim",
dependencies = {
"3rd/sqlite.nvim"
},
event = "VeryLazy",
opts = {
data_file = vim.fn.stdpath("data") .. "/time-tracker.db"
}
}