mirror of
https://github.com/NvChad/NvChad.git
synced 2024-11-06 15:20:25 +00:00
16 lines
229 B
Lua
16 lines
229 B
Lua
vim.g.nvchad_theme = "onedark"
|
|
|
|
local base16
|
|
if
|
|
not pcall(
|
|
function()
|
|
base16 = require "base16"
|
|
end
|
|
)
|
|
then
|
|
return false
|
|
else
|
|
base16(base16.themes["onedark"], true)
|
|
return true
|
|
end
|