blob: 830e1b98ce12a1362b0b079b01652fa6a6c2c227 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
local status_ok, colorizer = pcall(require, "colorizer")
if not status_ok then
return
end
colorizer.setup {
filetypes = { '*' },
user_default_options = {
names = false,
RRGGBBAA = true,
AARRGGBB = true,
},
}
|