nvim: disable neoscroll and enable packer autoremove plugins

This commit is contained in:
PowerUser64 2022-08-09 11:29:43 -07:00
parent 4821c37c7c
commit 386de6da17

View file

@ -27,6 +27,9 @@ return require('packer').startup({function()
config = function() config = function()
-- Map :PS to :PackerSync -- Map :PS to :PackerSync
vim.cmd 'command! PS PackerSync' vim.cmd 'command! PS PackerSync'
require("packer").init({
autoremove = true,
})
end end
} }
@ -260,6 +263,7 @@ return require('packer').startup({function()
} }
use { -- neoscroll: Smooth Scrolling use { -- neoscroll: Smooth Scrolling
'karb94/neoscroll.nvim', 'karb94/neoscroll.nvim',
disable = true,
config = function() config = function()
require('blake.other').neoscroll() require('blake.other').neoscroll()
end, end,