aboutsummaryrefslogtreecommitdiff
path: root/config/nvim/lua/colorscheme.lua
blob: f9f6ce6cfcd1addc83071165d4121573099e4efe (plain)
1
2
3
4
5
6
7
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