aboutsummaryrefslogtreecommitdiffstats
path: root/nvim/lua/user/indentline.lua
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2023-05-14 09:10:26 +0100
committerMatthew Lemon <y@yulqen.org>2023-05-14 09:10:26 +0100
commit0721b537a8aa3be8b70c183b25951494df9dcd0e (patch)
treeeff07bbc31aeefbb9d2e441bb5ca8b5a5a527ffb /nvim/lua/user/indentline.lua
parent10a89dfbc6bc57ce12c8cf90f1b38a34b728b369 (diff)
Installs nvim config base-idea
Diffstat (limited to '')
-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