blob: 66516fa63ba022662509cf699010bd3654ff5db5 (
plain)
1
2
3
4
5
6
7
8
|
-- define your colorscheme here
local colorscheme = 'badwolf'
local is_ok, _ = pcall(vim.cmd, "colorscheme " .. colorscheme)
if not is_ok then
vim.notify('colorscheme ' .. colorscheme .. ' not found!')
return
end
|