mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-12-25 12:14:19 +01:00
## Description This improves the comment strings that produce documentation for different plugins. I often look at the docs to learn what stuff is already installed, and this would help people like me to quickly understand what some of the plugins do. ## Checklist - [x] I've read the [CONTRIBUTING](https://github.com/LazyVim/LazyVim/blob/main/CONTRIBUTING.md) guidelines.
21 lines
397 B
Lua
21 lines
397 B
Lua
-- Animates cursor movement with a smear effect.
|
|
return {
|
|
"sphamba/smear-cursor.nvim",
|
|
event = "VeryLazy",
|
|
cond = vim.g.neovide == nil,
|
|
opts = {
|
|
hide_target_hack = true,
|
|
cursor_color = "none",
|
|
},
|
|
specs = {
|
|
-- disable mini.animate cursor
|
|
{
|
|
"nvim-mini/mini.animate",
|
|
optional = true,
|
|
opts = {
|
|
cursor = { enable = false },
|
|
},
|
|
},
|
|
},
|
|
}
|