blob: 78e71a5b56ed20f85d83b1d79cec4b31d3c9417f (
plain)
1
2
3
4
5
6
|
local colorscheme = "xcodehc"
vim.o.background = "light"
local ok, _ = pcall(vim.cmd, "colorscheme " .. colorscheme)
if not ok then
vim.notify("colorscheme " .. colorscheme .. " not found!")
end
|