summaryrefslogtreecommitdiff
path: root/.config/nvim/plugins/indent_blankline.vim
blob: 227ac86d1127753f4dea913b979357c0d2425b58 (plain)
1
2
3
4
5
6
7
8
9
10
11
lua <<EOF
vim.api.nvim_set_hl(0, 'IndentBlanklineChar', { fg = '#303030', nocombine = true })
vim.api.nvim_set_hl(0, 'IndentBlanklineContextChar', { fg = '#404040', nocombine = true })

require('indent_blankline').setup {
	use_treesitter = true,
	show_first_indent_level = false,
	show_trailing_blankline_indent = false,
	show_current_context = true,
}
EOF