You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
NvChad/lua/theme.lua

13 lines
261 B
Lua

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