Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/max397574/footprints.nvim


https://github.com/max397574/footprints.nvim

Last synced: 7 days ago
JSON representation

Awesome Lists containing this project

README

        

# đź‘Łfootprints.nvim

This is a lua version of
[footprints](https://github.com/axlebedev/footprints)

✨Features
--------
* Highlights lines where you changed text.
* Darker highlight based on how old changes are.

📦Installation
------------
Use your favourite package manager and call setup function.
```vim
" Vimscript with vim-plug
Plug 'max397574/footprints.nvim'
```

```
-- lua with packer.nvim
use {"max397574/footprints.nvim"}
```

âś…Usage
-----
Just type and see your changes.

⚙️Customization
-------------
```lua
-- lua, default settings
require("footprints_nvim").setup {
highlight_color_1 = "#000000" --for the oldest change
highlight_color_2 = "#2E2E2E"
highlight_color_3 = "#616161"
highlight_color_4 = "#969696"
highlight_color_5 = "#A1A1A1" -- for the newest change
change_step_size = 1 -- how much time until a change goes to the next category
}
```

đźš«Limitations/Issues
--------------------
* Currently doesn't work when highlight are set with a namespace

đź’ˇFuture Plans/Ideas
------------------
Smarter highlight colors

đź‘€Demo
------

https://user-images.githubusercontent.com/81827001/133138785-4d8d550a-5762-4223-b24d-97d3aa4f1bf4.mp4