mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 16:39:04 +02:00
14 lines
320 B
Lua
14 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,
|
||
|
}
|