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