mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-24 17:58:46 +02:00
9 lines
278 B
Lua
9 lines
278 B
Lua
local colorscheme = vim.g.pcode_colorscheme or "gruvbox-baby"
|
|
|
|
if substring(tostring(colorscheme), "sonokai") then
|
|
colorscheme = "sonokai"
|
|
elseif substring(tostring(colorscheme), "material") then
|
|
colorscheme = "material"
|
|
end
|
|
|
|
vim.cmd("colorscheme " .. colorscheme)
|