nvim/lua/plugins/tokyonight.lua

13 lines
223 B
Lua
Raw Normal View History

2025-04-06 22:19:03 +08:00
return {
"folke/tokyonight.nvim",
opts = {
-- moon
style = "day"
},
config = function (_, opts)
require("tokyonight").setup(opts)
vim.cmd("colorscheme tokyonight")
end
}