19 lines
485 B
Lua
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,
|
|
},
|
|
},
|
|
}
|