summaryrefslogtreecommitdiffstats
path: root/nvim/lua/user/indentline.lua
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/lua/user/indentline.lua')
-rw-r--r--nvim/lua/user/indentline.lua21
1 files changed, 21 insertions, 0 deletions
diff --git a/nvim/lua/user/indentline.lua b/nvim/lua/user/indentline.lua
new file mode 100644
index 0000000..5945e6f
--- /dev/null
+++ b/nvim/lua/user/indentline.lua
@@ -0,0 +1,21 @@
+local M = {
+ "lukas-reineke/indent-blankline.nvim",
+ commit = "8299fe7703dfff4b1752aeed271c3b95281a952d",
+ event = "BufReadPre",
+}
+
+M.opts = {
+ char = "▏",
+ show_trailing_blankline_indent = false,
+ show_first_indent_level = true,
+ use_treesitter = true,
+ show_current_context = true,
+ buftype_exclude = { "terminal", "nofile" },
+ filetype_exclude = {
+ "help",
+ "packer",
+ "NvimTree",
+ },
+}
+
+return M