summaryrefslogtreecommitdiff
path: root/lua/config/colorpicker.lua
blob: f489b9c5dd35df853a2a6409f7a023bbb81995e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
return function()
	-- Enable true color
	vim.opt.termguicolors = true

	local ccc = require("ccc")
	local mapping = ccc.mapping

	ccc.setup({
		highlighter = {
			auto_enable = true,
			lsp = true,
		},
		-- add other options here
	})
end