summaryrefslogtreecommitdiff
path: root/public/nvim/.nvim/lua/plugins/eyecandy/indent-blankline.lua
blob: 618c730186a637f4f6550dc21a494c5485c620ac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
return {
	"lukas-reineke/indent-blankline.nvim",
	event = { "BufRead" },
	config = function()
		require("indent_blankline").setup({
			show_current_context = true,
			show_current_context_start = false,
		})
	end,
	dependencies = { "nvim-treesitter" },
}