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