-- This file needs to have same structure as nvconfig.lua -- https://github.com/NvChad/NvChad/blob/v2.5/lua/nvconfig.lua ---@type ChadrcConfig local M = {} M.base46 = { hl_override = { ColorColumn = { bg = "#770000" }, Comment = { italic = true, }, DiffChange = { bg = "NONE", fg = "#e7c547" }, DiffText = { bg = "NONE", fg = "#ff8700" }, SpellBad = { bg = "#770000", fg = "#ffffff" }, Visual = { bg = "#0094d8", fg = "#ffffff" }, }, theme = "github_light", transparency = false } M.ui = { statusline = { theme = "vscode_colored", } } M.mason = { cmd = true, pkgs = { "lua-language-server", "terraform-ls", "tflint" } } return M