feat: add eye candy plugins

This commit is contained in:
lucas barbieri 2024-11-28 11:06:28 -03:00
parent 37400f86d6
commit e34c928b4c
3 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,12 @@
return {
"sphamba/smear-cursor.nvim",
opts = {
legacy_computing_symbols_support = true,
transparent_bg_fallback_color = "#303030",
stiffness = 0.8, -- 0.6 [0, 1]
trailing_stiffness = 0.6, -- 0.3 [0, 1]
trailing_exponent = 0, -- 0.1 >= 0
distance_stop_animating = 0.5, -- 0.1 > 0
hide_target_hack = false, -- true boolean
},
}

View File

@ -0,0 +1,6 @@
return {
"karb94/neoscroll.nvim",
config = function ()
require('neoscroll').setup({})
end
}

View File

@ -0,0 +1,9 @@
return {
"rachartier/tiny-inline-diagnostic.nvim",
event = "VeryLazy", -- Or `LspAttach`
priority = 1000, -- needs to be loaded in first
config = function()
vim.diagnostic.config({ virtual_text = false })
require('tiny-inline-diagnostic').setup({})
end
}