Files
nvim-config/lua/colorscheme.lua
2023-10-18 11:44:57 +02:00

10 lines
227 B
Lua

-- 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