Files
neovim-configuration/lua/colorscheme.lua
2026-08-07 09:13:07 +02:00

9 lines
228 B
Lua

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