added fonts
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
return {
|
||||
'vyfor/cord.nvim',
|
||||
build = ':Cord update',
|
||||
-- opts = {}
|
||||
}
|
||||
@@ -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
|
||||
}
|
||||
Reference in New Issue
Block a user