2024-04-17 13:37:16 +00:00
|
|
|
-- This file needs to have same structure as nvconfig.lua
|
2024-04-08 09:26:41 +00:00
|
|
|
-- https://github.com/NvChad/NvChad/blob/v2.5/lua/nvconfig.lua
|
|
|
|
|
|
|
|
---@type ChadrcConfig
|
|
|
|
local M = {}
|
|
|
|
|
|
|
|
M.ui = {
|
2024-04-17 13:37:16 +00:00
|
|
|
theme = "onedark",
|
|
|
|
term = {
|
|
|
|
enabled = false,
|
|
|
|
},
|
2024-04-08 09:26:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return M
|