From d0c7ad0eee0e92ee3705131fe9d23af7e11f46b5 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Tue, 6 Jun 2023 17:09:42 -0400 Subject: [PATCH] neovim: Add back nvim-scrollbar Looks like the issue where the scrollbar was hiding text behind it has been fixed. --- modules/neovim/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/neovim/default.nix b/modules/neovim/default.nix index 77e11a51..d07dde15 100644 --- a/modules/neovim/default.nix +++ b/modules/neovim/default.nix @@ -98,6 +98,11 @@ plugin = nvim-web-devicons; type = "lua"; } + { + plugin = nvim-scrollbar; + type = "lua"; + config = ''require("scrollbar").setup()''; + } { plugin = nvim-lspconfig; type = "lua";