add: config colorscheme solarized osaka

This commit is contained in:
asep.komarudin 2024-05-26 20:27:44 +07:00
parent 62d393b0f9
commit 30537367c1
4 changed files with 67 additions and 5 deletions

View file

@ -6,4 +6,7 @@ elseif substring(tostring(colorscheme), "material") then
colorscheme = "material"
end
vim.cmd("colorscheme " .. colorscheme)
local status_ok, _ = pcall(vim.cmd, "colorscheme " .. colorscheme)
if not status_ok then
return
end