From 57c004863f68270e144465517e462bd44cb4dad5 Mon Sep 17 00:00:00 2001 From: Guanran Wang Date: Wed, 21 Feb 2024 14:30:54 +0800 Subject: [PATCH] add indentlines --- lua/plugins/indentlines.lua | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 lua/plugins/indentlines.lua diff --git a/lua/plugins/indentlines.lua b/lua/plugins/indentlines.lua new file mode 100644 index 0000000..332c670 --- /dev/null +++ b/lua/plugins/indentlines.lua @@ -0,0 +1,10 @@ +return { + "lukas-reineke/indent-blankline.nvim", + main = "ibl", + opts = {}, + config = { + indent = { + char = "▏" + }, + }, +}