mirror of
https://github.com/arkorty/Neolite.git
synced 2026-03-18 00:57:12 +00:00
8 lines
147 B
Lua
8 lines
147 B
Lua
local ok, _colors = pcall(require, "onedark")
|
|
if not ok then
|
|
return
|
|
end
|
|
|
|
-- setup must be called before loading
|
|
vim.cmd("colorscheme onedark")
|