blob: 94855bcd8d9f8f1cb96e1cb38330fc84b369c147 (
plain)
1
2
3
4
5
6
7
|
local colorscheme = "slate"
local status_ok, _ = pcall(vim.cmd, "colorscheme " .. colorscheme)
if not status_ok then
vim.notify("colorscheme " .. colorscheme .. " not found!")
return
end
|