blob: d0579caa3963d8360697aa9dbdb34caeacd9f872 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
local M = {}
function M.highlight(palette, opts)
return {
LirFloatNormal = { fg = palette.fg, bg = palette.alt_bg },
LirDir = { fg = palette.white },
LirSymLink = { fg = palette.cyan },
LirEmptyDirText = { fg = palette.medium_gray },
}
end
return M
|