6b507c3368
lots of improvement for startup time Co-authored-by: Vhyrro <vhyrro@gmail.com>
19 lines
362 B
Lua
19 lines
362 B
Lua
vim.g.nvchad_theme = "onedark"
|
|
|
|
local present, base16 = pcall(require, "base16")
|
|
|
|
if present then
|
|
-- enabled these options, was disabled in options.lua
|
|
vim.cmd([[
|
|
syntax on
|
|
filetype on
|
|
filetype plugin indent on
|
|
]])
|
|
|
|
base16(base16.themes["onedark"], true)
|
|
require "highlights"
|
|
return true
|
|
else
|
|
return false
|
|
end
|