Add tiny glimmer
This commit is contained in:
parent
c2b511d01e
commit
28c73c6bab
1 changed files with 42 additions and 0 deletions
42
nvim/lua/plugs/tiny-glimmer.lua
Normal file
42
nvim/lua/plugs/tiny-glimmer.lua
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
return {
|
||||
"rachartier/tiny-glimmer.nvim",
|
||||
opts = {
|
||||
refresh_interval_ms = 6,
|
||||
overwrite = {
|
||||
auto_map = true,
|
||||
paste = {
|
||||
enabled = true,
|
||||
default_animation = {
|
||||
name = "fade",
|
||||
settings = {
|
||||
from_color = "DiffText",
|
||||
},
|
||||
},
|
||||
},
|
||||
undo = {
|
||||
enabled = true,
|
||||
default_animation = {
|
||||
name = "fade",
|
||||
settings = {
|
||||
from_color = "DiffDelete",
|
||||
},
|
||||
},
|
||||
},
|
||||
redo = {
|
||||
enabled = true,
|
||||
default_animation = {
|
||||
name = "fade",
|
||||
settings = {
|
||||
from_color = "DiffAdd",
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
animations = {
|
||||
fade = {
|
||||
chars_for_max_duration = 1,
|
||||
to_color = "Folded"
|
||||
},
|
||||
}
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue