From ca231be27c4aad13d08306f1cdeccd3cb1dfe884 Mon Sep 17 00:00:00 2001 From: leafee98 Date: Mon, 18 Dec 2023 21:45:43 +0800 Subject: [PATCH] add plugin scrollview --- lua/plugins/10-editor.lua | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/lua/plugins/10-editor.lua b/lua/plugins/10-editor.lua index 55e716d..ecff12f 100644 --- a/lua/plugins/10-editor.lua +++ b/lua/plugins/10-editor.lua @@ -32,4 +32,16 @@ return { event = "VeryLazy", opts = { }, }, + { + "petertriho/nvim-scrollview", + enabled = custom.full_feature, + event = "VeryLazy", + opts = { + excluded_filetypes = { "NvimTree" }, + current_only = false, + base = "right", + signs_on_startup = { "all" }, + diagnostics_severities = { vim.diagnostic.severity.ERROR } + }, + } }