mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-22 00:49:03 +02:00
19 lines
323 B
Lua
19 lines
323 B
Lua
|
return {
|
||
|
"sphamba/smear-cursor.nvim",
|
||
|
event = "VeryLazy",
|
||
|
cond = vim.g.neovide == nil,
|
||
|
opts = {
|
||
|
hide_target_hack = true,
|
||
|
},
|
||
|
specs = {
|
||
|
-- disable mini.animate cursor
|
||
|
{
|
||
|
"echasnovski/mini.animate",
|
||
|
optional = true,
|
||
|
opts = {
|
||
|
cursor = { enable = false },
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|