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

@ -469,22 +469,32 @@ return require("packer").startup({
-- end
-- })
-- Lots of small modules pulled into
-- one git repository
-- Lots of small modules pulled into
-- one git repository
use({
"echasnovski/mini.nvim",
config = function()
-- Underline matching words to word undor cursor
require("mini.cursorword").setup({})
-- Indent Scope Operations
local indent_scope = require("mini.indentscope")
indent_scope.setup({
symbol = "",
options = {
try_as_border = true
}
-- Underline matching words to word undor cursor
require("mini.cursorword").setup({})
-- Indent Scope Operations
local indent_scope = require("mini.indentscope")
indent_scope.setup({
symbol = "",
options = {
try_as_border = true,
},
})
end,
})
-- Smoother Scrolling
use({
"karb94/neoscroll.nvim",
config = function()
require("neoscroll").setup({
easing_function = "sine"
})
end,
end,
})
-- Leave at end!!!