summaryrefslogtreecommitdiff
path: root/.config/nvim/lua/user/plugins/cursorline.lua
blob: 3452a95400a5d41e1235d036e5b6f476613e4491 (plain)
1
2
3
4
5
6
7
8
9
10
11
return {
	"ya2s/nvim-cursorline",
	opts = {
		cursorline = { enable = false }, -- I don't want this plugin fucking with my cursorline
		cursorword = {
			enable = true,
			min_length = 2,
			hl = { underline = true },
		}
	}
}