From 6881fdfefb59054275934b22a178d1a358306b96 Mon Sep 17 00:00:00 2001 From: alternateved Date: Sun, 4 Jul 2021 16:29:16 +0200 Subject: [PATCH 1/3] Add background colors in case of different terminal colors --- lua/highlights.lua | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lua/highlights.lua b/lua/highlights.lua index e276211..438f419 100644 --- a/lua/highlights.lua +++ b/lua/highlights.lua @@ -142,4 +142,10 @@ fg("DashboardShortcut", grey_fg) fg("DashboardFooter", grey_fg) -- Default nvim bg (based on terminal bg) + +-- Onedark background -- cmd "hi Normal guibg=#1e222a" +-- Gruvbox background +-- cmd "hi Normal guibg=#282828" +-- Tomorrow-ight background +-- cmd "hi Normal guibg=#1d1f21" From e8574170f54277d33b82385bf4452b168fa005f3 Mon Sep 17 00:00:00 2001 From: alternateved <45176912+alternateved@users.noreply.github.com> Date: Sun, 4 Jul 2021 20:14:12 +0200 Subject: [PATCH 2/3] Remove tomorrow-night theme --- lua/highlights.lua | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lua/highlights.lua b/lua/highlights.lua index 438f419..8edd8c1 100644 --- a/lua/highlights.lua +++ b/lua/highlights.lua @@ -146,6 +146,4 @@ fg("DashboardFooter", grey_fg) -- Onedark background -- cmd "hi Normal guibg=#1e222a" -- Gruvbox background --- cmd "hi Normal guibg=#282828" --- Tomorrow-ight background --- cmd "hi Normal guibg=#1d1f21" +-- cmd "hi Normal guibg=#222526" From 02b4194e1e5f8376036fa502af13b2bc7caccdcb Mon Sep 17 00:00:00 2001 From: siduck76 Date: Mon, 5 Jul 2021 22:24:30 +0530 Subject: [PATCH 3/3] Update highlights.lua --- lua/highlights.lua | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/lua/highlights.lua b/lua/highlights.lua index 8edd8c1..afe4b53 100644 --- a/lua/highlights.lua +++ b/lua/highlights.lua @@ -141,9 +141,11 @@ fg("DashboardCenter", grey_fg) fg("DashboardShortcut", grey_fg) fg("DashboardFooter", grey_fg) --- Default nvim bg (based on terminal bg) +-- set bg color for nvim ( so nvim wont use terminal bg) --- Onedark background --- cmd "hi Normal guibg=#1e222a" --- Gruvbox background --- cmd "hi Normal guibg=#222526" +-- NvChad themes bg colors +-- Onedark #1e222a +-- Gruvbox #222526 +-- tomorrow night #1d1f21 + +-- bg("Normal", "#1e222a") -- change the hex color here.