neovim-config/lua/theme.lua

12 lines
216 B
Lua

vim.g.nvchad_theme = "onedark"
local present, base16 = pcall(require, "base16")
if present then
base16(base16.themes["onedark"], true)
pcall(require, "highlights")
return true
else
return false
end