refactor(nvim): disable neoscroll when using Neovide

This commit is contained in:
Price Hiller 2024-02-26 22:47:31 -06:00
parent fbdfe304a8
commit 16186c3f0f
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -2,6 +2,11 @@ return {
{
"karb94/neoscroll.nvim",
event = "WinScrolled",
config = function(opts)
if not vim.g.neovide then
require("neoscroll").setup(opts)
end
end,
opts = {
easing_function = "circular",
},