Files
dotfiles-and-setup/theme-switcher-testing/neovim-tokyonight.lua
2025-10-12 22:42:32 -05:00

19 lines
485 B
Lua

return {
{
"folke/tokyonight.nvim",
lazy = false,
priority = 1000,
opts = {
style = "night", -- "night", "storm", "moon", "day"
styles = {
functions = {} -- disable italic for functions
},
on_colors = function(colors)
colors.hint = colors.orange
colors.error = "#ff0000"
colors.fg_gutter = "#9098B8"
end,
},
},
}