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.
|
local colorscheme = "default"
|
|
|
|
local status_ok, _ = pcall(vim.cmd, "colorscheme " .. colorscheme)
|
|
if not status_ok then
|
|
vim.notify("colorscheme " .. colorscheme .. " not found!")
|
|
return
|
|
end
|