Neovim/lua/plugins/nvim-scrollview.lua

18 lines
346 B
Lua
Raw Permalink Normal View History

2023-11-17 11:24:21 +00:00
return {
{
"dstein64/nvim-scrollview",
opts = {
excluded_filetypes = {
2024-01-02 22:44:49 +00:00
'dashboard',
'neo-tree',
'aerial'
2023-11-17 11:24:21 +00:00
},
2023-11-22 17:58:50 +00:00
signs_on_startup = {
'conflicts',
'search',
'cursor'
},
2023-11-17 11:24:21 +00:00
}
}
2023-11-22 17:58:50 +00:00
}