jones-nvim-config/lua/colorscheme.lua

9 lines
226 B
Lua
Raw Normal View History

2024-04-07 03:14:14 +00:00
-- define your colorscheme here
local colorscheme = 'monokai_pro'
local is_ok, _ = pcall(vim.cmd, "colorscheme " .. colorscheme)
if not is_ok then
vim.notify('colorscheme ' .. colorscheme .. ' not found!')
return
end