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