13 lines
272 B
Lua
13 lines
272 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,
|
|
},
|
|
}
|
|
|
|
-- vim: ts=2 sts=2 sw=2 et
|