summaryrefslogtreecommitdiffstats
path: root/after/plugin/indent-blankline.lua
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--after/plugin/indent-blankline.lua17
1 files changed, 17 insertions, 0 deletions
diff --git a/after/plugin/indent-blankline.lua b/after/plugin/indent-blankline.lua
new file mode 100644
index 0000000..830ad99
--- /dev/null
+++ b/after/plugin/indent-blankline.lua
@@ -0,0 +1,17 @@
+local status_ok, indent_blankline = pcall(require, "indent_blankline")
+if not status_ok then
+ return
+end
+
+indent_blankline.setup {
+ char = "",
+ char_highlight_list = {
+ "IndentBlanklineIndent1",
+ "IndentBlanklineIndent2",
+ },
+ space_char_highlight_list = {
+ "IndentBlanklineIndent1",
+ "IndentBlanklineIndent2",
+ },
+ show_trailing_blankline_indent = false,
+}