Initial commit

This commit is contained in:
Jiří Štefka 2024-03-06 02:24:31 +01:00 committed by GitHub
commit e2cff543d6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
29 changed files with 2701 additions and 0 deletions
nvim/plugin

10
nvim/plugin/eyeliner.lua Normal file
View file

@ -0,0 +1,10 @@
if vim.g.did_load_eyeliner_plugin then
return
end
vim.g.did_load_eyeliner_plugin = true
-- Highlights unique characters for f/F and t/T motions
require('eyeliner').setup {
highlight_on_key = true, -- show highlights only after key press
dim = true, -- dim all other characters
}