13 lines
231 B
Lua
13 lines
231 B
Lua
return {
|
|
{
|
|
'folke/tokyonight.nvim',
|
|
lazy = false,
|
|
priority = 1000,
|
|
config = function()
|
|
require('tokyonight').setup {
|
|
style = 'night',
|
|
}
|
|
vim.cmd [[colorscheme tokyonight]]
|
|
end,
|
|
},
|
|
}
|