kickstart.nvim/lua/plugins/colorscheme.lua

24 lines
548 B
Lua

return {
{
'folke/tokyonight.nvim',
priority = 1000, -- Make sure to load this before all the other start plugins.
config = function()
---@diagnostic disable-next-line: missing-fields
require('tokyonight').setup {
styles = {
comments = { italic = false }, -- Disable italics in comments
},
}
vim.cmd.colorscheme 'tokyonight-night'
end,
opts = {
on_highlights = function(hl, c)
hl.TelescopeNormal = {
fg = c.fg_dark,
}
end,
},
},
}