mirror of
https://github.com/dcarrillo/dotfiles.git
synced 2024-11-14 21:41:13 +00:00
13 lines
195 B
Lua
13 lines
195 B
Lua
|
local status_nf_ok, nightfox = pcall(require, "nightfox")
|
||
|
if not status_nf_ok then
|
||
|
return
|
||
|
end
|
||
|
|
||
|
local palettes = {
|
||
|
nightfox = {
|
||
|
bg1 = "#1c1e26",
|
||
|
},
|
||
|
}
|
||
|
|
||
|
nightfox.setup({ palettes = palettes })
|