Files
neovim-configuration/lua/colorscheme.lua

10 lines
262 B
Lua

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