nvim-config/lua/plugins/colorscheme.lua
2024-12-07 03:41:14 -05:00

10 lines
247 B
Lua

return {
{
'folke/tokyonight.nvim',
priority = 1000, -- Make sure to load this before all the other start plugins.
init = function()
vim.cmd.colorscheme 'tokyonight-night'
-- vim.cmd.hi 'Comment gui=none'
end,
},
}