my-nvim-lua/lua/theme.lua
Akianonymus 6b4435caef Don't use new_async
It doesn't seem to be improving stuff as it is not supposed to

Due to the half baked stats of the startuptime plugin, people were fooled

no point in disabling filetype and whatenot

See some discussion here: https://github.com/siduck76/NvChad/issues/175
2021-07-23 21:57:14 +05:30

12 lines
208 B
Lua

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