13 lines
277 B
Lua
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
|
|
}
|
|
}
|
|
|