aboutsummaryrefslogtreecommitdiff
path: root/nvim/lua/plugins/indent-blankline.lua
blob: af9cff87739e56fb045ffb228b777ca0359bcce3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
return {
	"lukas-reineke/indent-blankline.nvim",
	lazy = true,
	event = { "BufReadPost", "BufWritePost", "BufNewFile" },
	main = "ibl",
	---@module "ibl"
	---@type ibl.config
	opts = {
		exclude = {
			filetypes = {
				"dashboard",
				"norg"
			},
		},
	},
}