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