nvim-config/lua/user/colorscheme.lua
2024-12-17 10:36:34 -06:00

7 lines
194 B
Lua

local colorscheme = 'default'
local status_ok, _ = pcall(vim.cmd, 'colorscheme ' .. colorscheme)
if not status_ok then
vim.notify('colorscheme ' .. colorscheme .. ' not found!')
return
end