From 5db36d44fb632e2d996721c3f8451fcda105359c Mon Sep 17 00:00:00 2001 From: siduck Date: Sun, 14 Nov 2021 06:57:49 +0530 Subject: [PATCH] restructure highlights.lua --- lua/colors/highlights.lua | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/lua/colors/highlights.lua b/lua/colors/highlights.lua index c16675d..895a929 100644 --- a/lua/colors/highlights.lua +++ b/lua/colors/highlights.lua @@ -1,8 +1,8 @@ -local override = require("core.utils").load_config().ui.hl_override - local cmd = vim.cmd +local override = require("core.utils").load_config().ui.hl_override local colors = require("colors").get() +local ui = require("core.utils").load_config().ui local black = colors.black local black2 = colors.black2 @@ -23,8 +23,7 @@ local white = colors.white local yellow = colors.yellow local one_bg3 = colors.one_bg3 -local ui = require("core.utils").load_config().ui - +-- functions for setting highlights local fg = require("core.utils").fg local fg_bg = require("core.utils").fg_bg local bg = require("core.utils").bg @@ -126,20 +125,20 @@ fg("NvimTreeVertSplit", darker_black) bg("NvimTreeVertSplit", darker_black) fg_bg("NvimTreeWindowPicker", red, black2) --- Disable some highlight in nvim tree if transparency enabled -if ui.transparency then - bg("NvimTreeNormal", "NONE") - bg("NvimTreeStatusLineNC", "NONE") - bg("NvimTreeVertSplit", "NONE") - fg("NvimTreeVertSplit", grey) -end - -- Telescope fg("TelescopeBorder", one_bg) fg_bg("TelescopePreviewTitle", green, one_bg) fg_bg("TelescopePromptTitle", blue, one_bg) fg_bg("TelescopeResultsTitle", red, one_bg) +-- Disable some highlight in nvim tree if transparency enabled +if ui.transparency then + bg("NvimTreeNormal", "NONE") + bg("NvimTreeStatusLineNC", "NONE") + bg("NvimTreeVertSplit", "NONE") + fg("NvimTreeVertSplit", grey) + end + if #override ~= 0 then require(override) end