From 103946319c8a0a30d9ba6101df2bab159c13ece3 Mon Sep 17 00:00:00 2001 From: Sakamoto Hiroshi Date: Tue, 2 Jul 2024 10:00:09 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=84=20massive=20revamp?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/chadrc.lua | 53 ++++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 47 insertions(+), 6 deletions(-) diff --git a/lua/chadrc.lua b/lua/chadrc.lua index 6439f47..edb482d 100644 --- a/lua/chadrc.lua +++ b/lua/chadrc.lua @@ -1,19 +1,60 @@ --- This file needs to have same structure as nvconfig.lua +-- 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.ui = { - theme = "bearded-arc", + theme = "bearded-arc", transparency = true, statusline = { theme = "minimal", }, - -- hl_override = { - -- Comment = { italic = true }, - -- ["@comment"] = { italic = true }, - -- }, + hl_override = { + Include = { + italic = true, + }, + -- for, while loops + Repeat = { + italic = true, + }, + -- if statements + Conditional = { + italic = true, + }, + -- class, with, as keywords + ["@keyword"] = { + italic = true, + }, + -- function keyword + ["@keyword.function"] = { + italic = true, + }, + -- return, yield keywords + ["@keyword.return"] = { + bold = true, + }, + -- function names + ["@function"] = { + italic = false, + }, + -- symbolic + ["@operator"] = { + bold = true, + }, + -- logical keywords + ["@keyword.operator"] = { + italic = true, + }, + -- function parameters + ["@parameter"] = { + italic = true, + + ["@variable"] = { + italic = false, + }, + }, + }, } return M