You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
456 B

vim.o.background = "dark"
vim.g.tokyonight_style = "storm" -- day / night
-- 半透明
3 years ago
-- vim.g.tokyonight_transparent = true
-- vim.g.tokyonight_transparent_sidebar = true
local colorscheme = "tokyonight"
3 years ago
-- tokyonight
-- OceanicNext
-- gruvbox
-- zephyr
-- nord
-- onedark
-- nightfox
local status_ok, _ = pcall(vim.cmd, "colorscheme " .. colorscheme)
if not status_ok then
3 years ago
vim.notify("colorscheme: " .. colorscheme .. " 没有找到!")
return
end