Initial Commit

This commit is contained in:
kossLAN 2024-08-26 22:37:32 -04:00
commit fd4cc7c8e6
Signed by: kossLAN
SSH key fingerprint: SHA256:bdV0x+wdQHGJ6LgmstH3KV8OpWY+OOFmJcPcB0wQPV8
31 changed files with 2687 additions and 0 deletions

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
}