nvim/lua/plugs/theme.lua

13 lines
277 B
Lua
Raw Normal View History

2023-11-15 23:40:02 +08:00
return {
'shaunsingh/nord.nvim', -- 主题插件
{
'folke/tokyonight.nvim',
config = function ()
G.cmd("colorscheme tokyonight") -- 主题
-- G.api.colorscheme = "tokyonight"
G.opt.background = 'dark' -- 背景
end
}
}