9 lines
208 B
Lua
9 lines
208 B
Lua
return {
|
|
"folke/tokyonight.nvim",
|
|
lazy = false, -- load immediately
|
|
priority = 1000, -- load before other plugins
|
|
config = function()
|
|
vim.cmd("colorscheme tokyonight")
|
|
end,
|
|
}
|