summaryrefslogtreecommitdiff
path: root/lua/config/colorpicker.lua
blob: 39772be8d3364c4c6f699c284f54b2a67eb77ed1 (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