2024-10-07 22:11:05 +02:00
|
|
|
# Timer
|
|
|
|
|
|
|
|
Timer times the time it took you to realize your project
|
|
|
|
|
|
|
|
Counts the time in your editor inside on directory.
|
|
|
|
Not beeing inside the editor for less than 5 minutes gets counted as beeing
|
|
|
|
inside the editor.
|
2024-10-08 11:05:16 +02:00
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
|
|
|
Lunar vim:
|
|
|
|
```lua
|
|
|
|
lvim.plugins = {
|
|
|
|
{
|
|
|
|
"schreifuchs/timer",
|
|
|
|
url = "https://git.schreifuchs.ch/schreifuchs/timer.git",
|
|
|
|
config = function()
|
|
|
|
require('timer').setup()
|
|
|
|
end
|
|
|
|
},
|
|
|
|
}
|
|
|
|
```
|