From 9a0bbde583ed5d7b04e219fd3d3d0980ff21f58a Mon Sep 17 00:00:00 2001 From: PlexSheep Date: Sat, 20 Jan 2024 20:04:02 +0100 Subject: [PATCH] dash styling --- lua/custom/chadrc.lua | 21 ++++++++++----------- lua/custom/highlights.lua | 8 ++++++++ 2 files changed, 18 insertions(+), 11 deletions(-) diff --git a/lua/custom/chadrc.lua b/lua/custom/chadrc.lua index 0171f58..ba07f3b 100644 --- a/lua/custom/chadrc.lua +++ b/lua/custom/chadrc.lua @@ -29,16 +29,16 @@ M.ui = { nvdash = { load_on_startup = true, header = { - " ", - " █ ████████ █████ ███████ ████ ", - " ███ ██████ █████ █████████ ██████ ", - " █████ ██████████████████████ ████ ███████████████ ", - " ██ ██ █████ █████████████ ████ ████████████████ ", - " ████ ███████████████ █████████ ████ █████ ██████ ████ ", - " ██████ ██████ ███ █████████ ████ █████ █████ ████ ", - "████████ ███████████████████ ████ ████ █████ ████ ████", - " ", - " 🛠️ Sharp tools make good work 🖥️ ", + " ", + " █ ████████ █████ ███████ ████ ", + " ███ ██████ █████ █████████ ██████ ", + " █████ ██████████████████████ ████ ███████████████ ", + " ██ ██ █████ █████████████ ████ ████████████████ ", + " ████ ███████████████ █████████ ████ █████ ██████ ████ ", + " ██████ ██████ ███ █████████ ████ █████ █████ ████ ", + " ████████ ███████████████████ ████ ████ █████ ████ ████ ", + " ", + " 🛠️ Sharp tools make good work 🖥️ ", }, }, } @@ -70,5 +70,4 @@ local get_info = function() return buf end M.ui.nvdash.buttons = get_info() - return M diff --git a/lua/custom/highlights.lua b/lua/custom/highlights.lua index ebf2dfb..a3c1d31 100644 --- a/lua/custom/highlights.lua +++ b/lua/custom/highlights.lua @@ -9,6 +9,14 @@ M.override = { Comment = { italic = true, }, + NvDashAscii = { + fg = "#b33366", + bg = "#1a1a1a", + }, + NvDashButtons = { + fg = "White", + bg = "#241e1e", + }, } ---@type HLTable