mirror of
https://github.com/CompeyDev/my-nvim-setup.git
synced 2024-12-13 13:30:41 +00:00
7 lines
135 B
Lua
7 lines
135 B
Lua
|
local colorscheme = "lighthaus"
|
||
|
|
||
|
local status_ok, _ = pcall(vim.cmd, "colorscheme " .. colorscheme)
|
||
|
if not status_ok then
|
||
|
return
|
||
|
end
|