From c11511d34ed4cb89327e7645a1a31d68b5e4b745 Mon Sep 17 00:00:00 2001 From: Michael Mandl Date: Sun, 20 Feb 2022 20:08:17 +0100 Subject: [PATCH] feat: show indent lines --- lua/plugins.lua | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/lua/plugins.lua b/lua/plugins.lua index 7cbd13c..d7a4dca 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -38,6 +38,16 @@ return require('packer').startup(function(use) } -- git commands + use({ + "lukas-reineke/indent-blankline.nvim", + config = function () + require("indent_blankline").setup { + char = "┊", + buftype_exclude = {"terminal", "help"} + } + end + }) + use('tpope/vim-fugitive') use ({ 'lewis6991/gitsigns.nvim',