From 752a33b9e8078778abb0aa66df7006635eb71dcf Mon Sep 17 00:00:00 2001 From: Jake Ginesin Date: Fri, 10 Jan 2025 23:05:13 -0500 Subject: [PATCH] 192 current 2025-01-10 23:05:05 25.05.20241217.d3c42f1 6.6.66 * --- home/programs/nvim/plugins/tokyonight.lua | 31 +++++++++++++++++------ 1 file changed, 23 insertions(+), 8 deletions(-) diff --git a/home/programs/nvim/plugins/tokyonight.lua b/home/programs/nvim/plugins/tokyonight.lua index 82c5f37..e7ba049 100644 --- a/home/programs/nvim/plugins/tokyonight.lua +++ b/home/programs/nvim/plugins/tokyonight.lua @@ -1,11 +1,26 @@ -- Tokyonight configuration in Lua -vim.g.tokyonight_style = "day" -vim.g.tokyonight_italic_functions = true -vim.g.tokyonight_sidebars = { "qf", "vista_kind", "terminal", "packer" } +require("tokyonight").setup({ + -- use the night style + style = "day", + -- disable italic for functions + styles = { + functions = {} + }, + -- 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" + end +}) -vim.g.tokyonight_colors = { - bg_dark = "#ff0000", - bg = "#0d0d0d", - fg = "#e3e1e1", -} + +-- vim.g.tokyonight_style = "day" +-- vim.g.tokyonight_italic_functions = true +-- vim.g.tokyonight_sidebars = { "qf", "vista_kind", "terminal", "packer" } + +-- vim.g.tokyonight_colors = { +-- bg_dark = "#ff0000", +-- bg = "#0d0d0d", +-- fg = "#e3e1e1", +-- }