dotfiles/.config/nvim/lua/user/nightfox.lua

13 lines
195 B
Lua
Raw Normal View History

2022-10-01 11:46:18 +00:00
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 })