nvim/lua/plugins/colorscheme.lua
2024-06-16 06:51:01 +08:00

9 lines
161 B
Lua

return {
"folke/tokyonight.nvim",
lazy = false,
priority = 1000,
opts = {},
init = function()
vim.cmd([[ colorscheme tokyonight-night ]])
end,
}