mirror of
https://github.com/CompeyDev/my-nvim-setup.git
synced 2024-12-13 05:20:38 +00:00
11 lines
216 B
Lua
11 lines
216 B
Lua
vim.g.nvchad_theme = "onedark"
|
|
|
|
local present, base16 = pcall(require, "base16")
|
|
|
|
if present then
|
|
base16(base16.themes["onedark"], true)
|
|
pcall(require, "highlights")
|
|
return true
|
|
else
|
|
return false
|
|
end
|