nvim/lua/plugs/theme.lua
2023-11-15 23:40:02 +08:00

13 lines
277 B
Lua

return {
'shaunsingh/nord.nvim', -- 主题插件
{
'folke/tokyonight.nvim',
config = function ()
G.cmd("colorscheme tokyonight") -- 主题
-- G.api.colorscheme = "tokyonight"
G.opt.background = 'dark' -- 背景
end
}
}