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.
my-nvim-lua/lua/theme.lua

11 lines
183 B
Lua

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