From 969c6a483afd388525c0f6681cc4c61b182d14a2 Mon Sep 17 00:00:00 2001 From: Jake Ginesin Date: Fri, 10 Jan 2025 23:06:41 -0500 Subject: [PATCH] 193 current 2025-01-10 23:06:31 25.05.20241217.d3c42f1 6.6.66 * --- home/programs/nvim/plugins/tokyonight.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/home/programs/nvim/plugins/tokyonight.lua b/home/programs/nvim/plugins/tokyonight.lua index e7ba049..0aef624 100644 --- a/home/programs/nvim/plugins/tokyonight.lua +++ b/home/programs/nvim/plugins/tokyonight.lua @@ -2,7 +2,7 @@ require("tokyonight").setup({ -- use the night style - style = "day", + style = "night", -- disable italic for functions styles = { functions = {} @@ -10,7 +10,8 @@ require("tokyonight").setup({ -- Change the "hint" color to the "orange" color, and make the "error" color bright red on_colors = function(colors) colors.hint = colors.orange - colors.error = "#ff0000" + colors.bg = "#ff0000" + colors.fg = "#e3e1e1" end })