diff options
author | Matthew Lemon <y@yulqen.org> | 2023-05-14 09:10:26 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2023-05-14 09:10:26 +0100 |
commit | 0721b537a8aa3be8b70c183b25951494df9dcd0e (patch) | |
tree | eff07bbc31aeefbb9d2e441bb5ca8b5a5a527ffb /nvim/lua/user/indentline.lua | |
parent | 10a89dfbc6bc57ce12c8cf90f1b38a34b728b369 (diff) |
Installs nvim config base-idea
Diffstat (limited to '')
-rw-r--r-- | nvim/lua/user/indentline.lua | 21 |
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 |