feat(nvim): Add neoscroll

This commit is contained in:
Price Hiller 2022-02-26 18:28:06 -06:00
parent 520a97f4fa
commit f21f1836ef

View File

@ -481,8 +481,18 @@ return require("packer").startup({
indent_scope.setup({
symbol = "",
options = {
try_as_border = true
}
try_as_border = true,
},
})
end,
})
-- Smoother Scrolling
use({
"karb94/neoscroll.nvim",
config = function()
require("neoscroll").setup({
easing_function = "sine"
})
end,
})