8 lines
188 B
Lua
8 lines
188 B
Lua
|
local colorscheme = 'monkai'
|
||
|
|
||
|
local is_ok, _ = pcall(vim.cmd, "colorscheme " .. colorscheme)
|
||
|
if not is_ok then
|
||
|
vim.notify('colorscheme ' .. colorscheme .. 'not found!')
|
||
|
return
|
||
|
end
|