added fonts

This commit is contained in:
2025-06-07 15:55:35 -05:00
parent c88f53156e
commit 6efd3714f4
90 changed files with 1282 additions and 72 deletions
+20
View File
@@ -0,0 +1,20 @@
return {
"3rd/time-tracker.nvim",
dependencies = {
"3rd/sqlite.nvim",
},
keys = {
{'<leader>t', "<cmd>TimeTracker<cr>", desc = "Open time tracker window"},
},
event = "VeryLazy",
opts = {
data_file = vim.fn.stdpath("data") .. "/time-tracker.db",
},
config = function()
require("time-tracker").setup({
data_file = vim.fn.stdpath("data") .. "/time-tracker.db",
tracking_events = { "BufEnter", "BufWinEnter", "CursorMoved", "CursorMovedI", "WinScrolled" },
tracking_timeout_seconds = 5 * 60, -- 5 minutes
})
end
}