From a2bf2823093778a3a77fb0a35efd45bffc7aeb29 Mon Sep 17 00:00:00 2001 From: sefidel Date: Sat, 26 Feb 2022 21:20:00 +0900 Subject: feat(pack): add lir --- fnl/nvrc/colors.fnl | 28 +++++++--------------------- 1 file changed, 7 insertions(+), 21 deletions(-) (limited to 'fnl/nvrc/colors.fnl') diff --git a/fnl/nvrc/colors.fnl b/fnl/nvrc/colors.fnl index 58ab4cd..1392a9f 100644 --- a/fnl/nvrc/colors.fnl +++ b/fnl/nvrc/colors.fnl @@ -50,26 +50,12 @@ (highlight :NvimInternalError {:fg (. colors :red)}) (highlight :VertSplit {:fg (. colors :grey2)}) - ; Gitdgreys - (highlight :DiffAdd {:fg (. colors :green) :bg (. colors :dgrey)}) - (highlight :DiffChange {:fg (. colors :yellow) :bg (. colors :dgrey)}) - (highlight :DiffChangeDelete {:fg (. colors :red) :bg (. colors :dgrey)}) - (highlight :DiffModified {:fg (. colors :red) :bg (. colors :dgrey)}) - (highlight :DiffDelete {:fg (. colors :red) :bg (. colors :dgrey)}) - - ; Nvimtree - (highlight :NvimTreeNormal {:bg (. colors :black)}) - (highlight :NvimTreeNormalNC {:bg (. colors :black)}) - (highlight :NvimTreeStatuslineNC {:fg (. colors :black) :bg (. colors :black)}) - (highlight :NvimTreeVertSplit {:fg (. colors :black) :bg (. colors :black)}) - (highlight :NvimTreeWindowPicker {:fg (. colors :red) :bg (. colors :black2)}) - (highlight :NvimTreeIndentMarker {:fg (. colors :grey)}) - (highlight :NvimTreeGitDirty {:fg (. colors :red)}) - (highlight :NvimTreeRootFolder {:fg (. colors :red) :underline true}) - (highlight :NvimTreeEmptyFolderName {:fg (. colors :skyblue)}) - (highlight :NvimTreeFolderIcon {:fg (. colors :skyblue)}) - (highlight :NvimTreeFolderName {:fg (. colors :skyblue)}) - (highlight :NvimTreeOpenedFolderName {:fg (. colors :magenta)}) - (highlight :NvimTreeEndOfBuffer {:fg (. colors :black2)})) + ; Lir + (highlight :LirFloatNormal {:bg (. colors :black)}) + (highlight :LirDir {:fg (. colors :skyblue)}) + (highlight :LirSymLink {:fg (. colors :grey)}) + (highlight :LirEmptyDirText {:fg (. colors :blue)}) + (highlight :LirFloatCurdirWindowNormal {:bg (. colors :black)}) + (highlight :LirFloatCurdirWindowDirName {:fg (. colors :skyblue)})) colors -- cgit 1.4.1