6b4435caef
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
12 lines
208 B
Lua
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
|