diff --git a/home/programs/nvim/init.lua b/home/programs/nvim/init.lua index 42e8bab..5a7b489 100644 --- a/home/programs/nvim/init.lua +++ b/home/programs/nvim/init.lua @@ -143,3 +143,19 @@ vim.api.nvim_create_autocmd("FileType", { command = "setlocal wrap" }) + + +require("tokyonight").setup({ + -- use the night style + style = "night", + -- 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.bg = "#ff0000" + colors.fg = "#e3e1e1" + end +})