N2Vim/lua/colorscheme.lua

8 lines
188 B
Lua
Raw Normal View History

2024-12-10 09:51:50 +08:00
local colorscheme = 'monkai'
local is_ok, _ = pcall(vim.cmd, "colorscheme " .. colorscheme)
if not is_ok then
vim.notify('colorscheme ' .. colorscheme .. 'not found!')
return
end