2024-06-23 10:18:36 -04:00
|
|
|
-- This file needs to have same structure as nvconfig.lua
|
2024-10-05 07:50:23 -04:00
|
|
|
-- https://github.com/NvChad/ui/blob/v3.0/lua/nvconfig.lua
|
2024-09-07 05:04:33 -04:00
|
|
|
-- Please read that file to know all available options :(
|
2024-03-23 02:19:07 -04:00
|
|
|
|
2024-03-17 21:04:01 -04:00
|
|
|
---@type ChadrcConfig
|
2024-03-09 11:03:44 -05:00
|
|
|
local M = {}
|
|
|
|
|
2024-07-28 20:06:46 -04:00
|
|
|
M.base46 = {
|
2024-03-17 21:04:01 -04:00
|
|
|
theme = "onedark",
|
|
|
|
|
|
|
|
-- hl_override = {
|
|
|
|
-- Comment = { italic = true },
|
|
|
|
-- ["@comment"] = { italic = true },
|
|
|
|
-- },
|
2024-03-09 11:03:44 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return M
|