restructure highlights.lua
This commit is contained in:
parent
8de3f4e84c
commit
5db36d44fb
|
@ -1,8 +1,8 @@
|
||||||
local override = require("core.utils").load_config().ui.hl_override
|
|
||||||
|
|
||||||
local cmd = vim.cmd
|
local cmd = vim.cmd
|
||||||
|
|
||||||
|
local override = require("core.utils").load_config().ui.hl_override
|
||||||
local colors = require("colors").get()
|
local colors = require("colors").get()
|
||||||
|
local ui = require("core.utils").load_config().ui
|
||||||
|
|
||||||
local black = colors.black
|
local black = colors.black
|
||||||
local black2 = colors.black2
|
local black2 = colors.black2
|
||||||
|
@ -23,8 +23,7 @@ local white = colors.white
|
||||||
local yellow = colors.yellow
|
local yellow = colors.yellow
|
||||||
local one_bg3 = colors.one_bg3
|
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 = require("core.utils").fg
|
||||||
local fg_bg = require("core.utils").fg_bg
|
local fg_bg = require("core.utils").fg_bg
|
||||||
local bg = require("core.utils").bg
|
local bg = require("core.utils").bg
|
||||||
|
@ -126,6 +125,12 @@ fg("NvimTreeVertSplit", darker_black)
|
||||||
bg("NvimTreeVertSplit", darker_black)
|
bg("NvimTreeVertSplit", darker_black)
|
||||||
fg_bg("NvimTreeWindowPicker", red, black2)
|
fg_bg("NvimTreeWindowPicker", red, black2)
|
||||||
|
|
||||||
|
-- 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
|
-- Disable some highlight in nvim tree if transparency enabled
|
||||||
if ui.transparency then
|
if ui.transparency then
|
||||||
bg("NvimTreeNormal", "NONE")
|
bg("NvimTreeNormal", "NONE")
|
||||||
|
@ -134,12 +139,6 @@ if ui.transparency then
|
||||||
fg("NvimTreeVertSplit", grey)
|
fg("NvimTreeVertSplit", grey)
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Telescope
|
|
||||||
fg("TelescopeBorder", one_bg)
|
|
||||||
fg_bg("TelescopePreviewTitle", green, one_bg)
|
|
||||||
fg_bg("TelescopePromptTitle", blue, one_bg)
|
|
||||||
fg_bg("TelescopeResultsTitle", red, one_bg)
|
|
||||||
|
|
||||||
if #override ~= 0 then
|
if #override ~= 0 then
|
||||||
require(override)
|
require(override)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue