blob: 47071b7c251b928aa470fbba2d7f3ccc43c3d6e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
local M = {}
function M.highlight(palette)
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
|