config/nvim: fix inverted neovide check

This commit is contained in:
arcayr 2025-06-25 13:47:56 +10:00
parent 403116dd45
commit 82b5ac0b47
Signed by: arcayr
SSH key fingerprint: SHA256:s7KSw4IsDK4O4Wuu31y1FnkXSR746bey9JVipamvZAs

View file

@ -25,7 +25,7 @@ vim.diagnostic.config({ virtual_text = true })
-- keymaps for plugins are defined in the plugin config.
-- keep neovide-specifics neovide-specific
if not vim.g.neovide then
if vim.g.neovide then
-- disable cursor animations
vim.g.neovide_position_animation_length = 0
vim.g.neovide_cursor_animation_length = 0.00