Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/max397574/footprints.nvim
https://github.com/max397574/footprints.nvim
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/max397574/footprints.nvim
- Owner: max397574
- Created: 2021-09-13T13:29:05.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2021-09-22T09:32:50.000Z (about 3 years ago)
- Last Synced: 2024-08-07T18:37:05.738Z (3 months ago)
- Language: Lua
- Size: 11.7 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
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