mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-22 00:49:01 +02:00
13 lines
320 B
Lua
13 lines
320 B
Lua
return {
|
|
"dstein64/nvim-scrollview",
|
|
lazy = true,
|
|
event = { "BufRead", "InsertEnter", "BufNewFile" },
|
|
opts = {
|
|
bg = "LightCyan",
|
|
ctermbg = 160,
|
|
},
|
|
config = function(_, opts)
|
|
require("scrollview").setup(opts)
|
|
vim.g.scrollview_excluded_filetypes = { "NvimTree", "vista_kind", "Outline", "neo-tree" }
|
|
end,
|
|
}
|