summaryrefslogtreecommitdiff
path: root/lua/config/colorpicker.lua
diff options
context:
space:
mode:
authorbh <qn+git@excalibur.computer>2026-04-09 15:46:00 +0800
committerbh <qn+git@excalibur.computer>2026-04-09 15:46:00 +0800
commit6c81e38e15455fb3074d9d46c94ec2c951b5a382 (patch)
treec103a81c733ff200b4114f3a1caee058c10f374e /lua/config/colorpicker.lua
parent0a67a5614c1716c8ccf46980e13826616aa70c28 (diff)
Fix indentation
Diffstat (limited to 'lua/config/colorpicker.lua')
-rw-r--r--lua/config/colorpicker.lua22
1 files changed, 11 insertions, 11 deletions
diff --git a/lua/config/colorpicker.lua b/lua/config/colorpicker.lua
index 39772be..f489b9c 100644
--- a/lua/config/colorpicker.lua
+++ b/lua/config/colorpicker.lua
@@ -1,16 +1,16 @@
return function()
- -- Enable true color
- vim.opt.termguicolors = true
+ -- Enable true color
+ vim.opt.termguicolors = true
- local ccc = require("ccc")
- local mapping = ccc.mapping
+ local ccc = require("ccc")
+ local mapping = ccc.mapping
- ccc.setup({
- highlighter = {
- auto_enable = true,
- lsp = true,
- },
- -- add other options here
- })
+ ccc.setup({
+ highlighter = {
+ auto_enable = true,
+ lsp = true,
+ },
+ -- add other options here
+ })
end