Files
neovim-configuration/lua/colorscheme.lua

9 lines
225 B
Lua

-- define your colorscheme here
local colorscheme = 'lunaperche'
local is_ok, _ = pcall(vim.cmd, "colorscheme " .. colorscheme)
if not is_ok then
vim.notify('colorscheme ' .. colorscheme .. ' not found!')
return
end