Files
LazyVim-mirror/lua/lazyvim/plugins/extras/ui/smear-cursor.lua
Tom MacWright ab657e9589 docs: improved plugin doc strings (#5657)
## 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.
2025-09-17 11:17:32 +02:00

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 },
},
},
},
}