changeset 352:678cb3fdb667

Update to latest version of indent-blankline Removes the need for indentline, no conceal Exclude terminal from showing lines
author Zeger Van de Vannet <zegervdv@me.com>
date Tue, 23 Feb 2021 09:05:31 +0100
parents 7838713fd3b4
children 836332643468
files dot_config/nvim/config.lua
diffstat 1 files changed, 7 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/dot_config/nvim/config.lua	Fri Feb 19 17:37:38 2021 +0100
+++ b/dot_config/nvim/config.lua	Tue Feb 23 09:05:31 2021 +0100
@@ -72,8 +72,13 @@
     use {'mhinz/vim-grepper', cmd = {'Grepper'}}
 
     -- Indent lines
-    use {'Yggdroot/indentline'}
-    use {'lukas-reineke/indent-blankline.nvim', branch = 'lua'}
+    use {
+      'lukas-reineke/indent-blankline.nvim',
+      branch = 'lua',
+      config = function ()
+        vim.g.indent_blankline_buftype_exclude = {'terminal'}
+      end
+    }
 
     -- Tmux
     function test_tmux()