From 2977882a6023cc122138b8a31a246ce53c416378 Mon Sep 17 00:00:00 2001 From: Paul-Henri Froidmont Date: Sun, 14 Jul 2024 06:22:46 +0200 Subject: [PATCH] Neovim: fix indent-blankline --- modules/editor/vim.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/editor/vim.nix b/modules/editor/vim.nix index bd82b71..10c1847 100644 --- a/modules/editor/vim.nix +++ b/modules/editor/vim.nix @@ -510,6 +510,11 @@ in { } { pkg = pkgs.unstable.vimPlugins.indent-blankline-nvim; + event = "VeryLazy"; + main = "ibl"; + opts = { + scope.enabled = false; + }; } { pkg = pkgs.unstable.vimPlugins.vim-sleuth;