dotfiles/.config/nvim/lua/plugins/scrollbar.lua.bak
Sergio Laín f38ba04d54
feat(nvim): new scrollbar added
now im using neovim nightly (10.0) so i can replace the old scrollbar that i had for this one which
is more useful and cool!
2023-10-06 12:53:48 +02:00

18 lines
626 B
Lua

return {
{
"dstein64/nvim-scrollview",
event = "BufReadPost",
keys = { { "<leader>uS", "<cmd>ScrollViewToggle<CR>", desc = "Toggle Scrollview" } },
config = function()
require("scrollview").setup({
excluded_filetypes = { "neo-tree", "alpha", "symbols-outline" },
signs_column = 0,
winblend = 25,
diagnostics_error_symbol = "",
diagnostics_warn_symbol = "",
diagnostics_info_symbol = "",
diagnostics_hint_symbol = "",
})
end,
},
}