This commit is contained in:
Christian Nieves
2024-01-04 23:20:25 +00:00
parent df15c25cd5
commit 2fcda354a9
5 changed files with 61 additions and 54 deletions

View File

@ -0,0 +1,42 @@
return {
-- {
-- "dstein64/nvim-scrollview",
-- config = function()
-- require("scrollview").setup({
-- excluded_filetypes = { "nerdtree" },
-- current_only = true,
-- -- base = "buffer",
-- -- column = 80,
-- signs_on_startup = { "all" },
-- diagnostics_severities = { vim.diagnostic.severity.ERROR },
-- })
-- end,
-- },
{
"petertriho/nvim-scrollbar",
config = function()
require("scrollbar").setup({
show_in_active_only = true,
excluded_filetypes = {
"cmp_docs",
"cmp_menu",
"noice",
"prompt",
"TelescopePrompt",
"neo-tree",
},
})
end,
lazy = false,
},
{
"kevinhwang91/nvim-hlslens",
config = function()
-- require('hlslens').setup() is not required
require("scrollbar.handlers.search").setup({
-- hlslens config overrides
})
end,
},
}