194 current 2025-01-10 23:09:10 25.05.20241217.d3c42f1 6.6.66 *

This commit is contained in:
2025-01-10 23:09:20 -05:00
parent 969c6a483a
commit 5bd9479269

View File

@@ -143,3 +143,19 @@ vim.api.nvim_create_autocmd("FileType", {
command = "setlocal wrap" 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
})