From 3dee43330ac8a488a2417acf192f7eeacaaf157f Mon Sep 17 00:00:00 2001 From: Daniel Lundin Date: Wed, 27 Nov 2024 14:04:13 +0100 Subject: [PATCH] nvim: clear Normal group and use terminal defaults for background+foreground --- home/common/nvim/dieter/lua/dieter/init.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/home/common/nvim/dieter/lua/dieter/init.lua b/home/common/nvim/dieter/lua/dieter/init.lua index 0e39bd7..4ba8e4c 100644 --- a/home/common/nvim/dieter/lua/dieter/init.lua +++ b/home/common/nvim/dieter/lua/dieter/init.lua @@ -2,8 +2,8 @@ local hsl = require("dieter.hsl").hslToHex local colors = { light = { - background = hsl(240, 100, 100), - foreground = hsl(0, 0, 13), + background = "NONE", + foreground = "NONE", accent1 = hsl(12, 100, 50), @@ -40,7 +40,7 @@ local colors = { dark = { background = "NONE", - foreground = hsl(216, 12, 84), + foreground = "NONE", accent1 = hsl(12, 100, 50),