aboutsummaryrefslogtreecommitdiff
path: root/lua/config/indent-blankline.lua
blob: c972a447f40ee4dce85b1cab56ca9afac8f6f854 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require("indent_blankline").setup {
  -- U+2502 may also be a good choice, it will be on the middle of cursor.
  char = "▏",
  show_end_of_line = false,
  disable_with_nolist = true,
  buftype_exclude = {"terminal"},
  filetype_exclude = { "help", "startify", "git", "markdown", "snippets" },
}

vim.cmd[[
augroup indent_blankline
  autocmd!
  autocmd InsertEnter * IndentBlanklineDisable
  autocmd InsertLeave * IndentBlanklineEnable
augroup END
]]