nvim_wal/wal.lua

21 lines
429 B
Lua
Raw Normal View History

2023-07-25 21:02:38 +02:00
local Highlite = require 'highlite'
local Palette = require 'highlite.color.palette'
local palette = Palette.derive('dark', {
bg = '#202020',
error = '#aa0000',
func = '#cc00aa',
hint = '#cc0055',
info = '#ccbb88',
ok = '#33bb55',
statement = '#33ccFF',
storage = '#cc7700',
text = '#cccccc',
uri = '#00aa00',
warning = '#ffbb00',
})
local groups = Highlite.groups('default', palette)
Highlite.setup('wal', groups)