18 lines
540 B
Lua
18 lines
540 B
Lua
-- You can add your own plugins here or in other files in this directory!
|
|
-- I promise not to create any merge conflicts in this directory :)
|
|
--
|
|
-- See the kickstart.nvim README for more information
|
|
return {
|
|
-- should show a neat cursor trail when the cursor is moved quickly.
|
|
'sphamba/smear-cursor.nvim',
|
|
opts = {
|
|
-- FIRE MODE --
|
|
-- cursor_color = '#ff8800',
|
|
-- stiffness = 0.3,
|
|
-- trailing_stiffness = 0.1,
|
|
-- trailing_exponent = 3,
|
|
-- gamma = 1,
|
|
-- volume_reduction_exponent = -0.1,
|
|
},
|
|
}
|