mirror of
https://github.com/arkorty/Neolite.git
synced 2026-03-17 16:51:42 +00:00
9 lines
170 B
Lua
9 lines
170 B
Lua
local ok, _ = pcall(require, "onedark")
|
|
if not ok then
|
|
return
|
|
end
|
|
|
|
-- setup must be called before loading
|
|
vim.opt.termguicolors = true
|
|
vim.cmd.colorscheme("onedark")
|