mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 16:39:04 +02:00
10 lines
226 B
Lua
10 lines
226 B
Lua
|
local status_ok, scrollview = pcall(require, "scrollview")
|
||
|
if not status_ok then
|
||
|
return
|
||
|
end
|
||
|
scrollview.setup({
|
||
|
bg = "LightCyan",
|
||
|
ctermbg = 160,
|
||
|
})
|
||
|
vim.g.scrollview_excluded_filetypes = { "NvimTree", "vista_kind" }
|