pojokcodeid.nvim-lazy/lua/user/nvimscroll.lua

10 lines
249 B
Lua
Raw Normal View History

2023-01-15 00:17:41 +07:00
local status_ok, scrollview = pcall(require, "scrollview")
if not status_ok then
return
end
scrollview.setup({
bg = "LightCyan",
ctermbg = 160,
})
2023-02-27 14:52:49 +07:00
vim.g.scrollview_excluded_filetypes = { "NvimTree", "vista_kind", "Outline", "neo-tree" }