pojokcodeid.nvim-lazy/lua/plugins/scrollview.lua

14 lines
320 B
Lua
Raw Normal View History

2024-05-20 08:42:59 +07:00
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,
}