https://github.com/tortitast/langkeeper.nvim
Keep track of the time you spend programming.
https://github.com/tortitast/langkeeper.nvim
vim
Last synced: about 2 months ago
JSON representation
Keep track of the time you spend programming.
- Host: GitHub
- URL: https://github.com/tortitast/langkeeper.nvim
- Owner: TortitasT
- License: mit
- Created: 2023-08-15T14:13:46.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-01-09T13:00:14.000Z (over 2 years ago)
- Last Synced: 2025-06-01T10:27:24.806Z (about 1 year ago)
- Topics: vim
- Language: Lua
- Homepage:
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Langkeeper.nvim
## Getting Started
Go to [https://langkeeper.tortitas.eu](https://langkeeper.tortitas.eu), register
an account and follow the instructions.
## Installation
Using [packer.nvim](https://github.com/wbthomason/packer.nvim)
```lua
use {
'TortitasT/langkeeper.nvim'
config = function()
require 'langkeeper'.setup()
end
}
```
Using [lazy.nvim](https://github.com/folke/lazy.nvim)
```lua
{
"TortitasT/langkeeper.nvim",
config = function()
require 'langkeeper'.setup()
end
},
```
Using [vim-plug](https://github.com/junegunn/vim-plug)
```vim
Plug 'TortitasT/langkeeper.nvim'
lua require 'langkeeper'.setup()
```
Using [dein](https://github.com/Shougo/dein.vim)
```vim
call dein#add('TortitasT/langkeeper.nvim')
lua require 'langkeeper'.setup()
```
## Configuration
Configuration file is located in `~/.config/nvim/langkeeper.json`, you can open this file via `:LangkeeperConfig` command.
Configuration parameters
```json
{
"address": "https://langkeeper.tortitas.eu",
"email": "your@email.com",
"password": "secret"
}
```