summaryrefslogtreecommitdiffstats
path: root/.config/nvim/lua/chadrc.lua
diff options
context:
space:
mode:
Diffstat (limited to '.config/nvim/lua/chadrc.lua')
-rw-r--r--.config/nvim/lua/chadrc.lua18
1 files changed, 18 insertions, 0 deletions
diff --git a/.config/nvim/lua/chadrc.lua b/.config/nvim/lua/chadrc.lua
new file mode 100644
index 0000000..01cbda4
--- /dev/null
+++ b/.config/nvim/lua/chadrc.lua
@@ -0,0 +1,18 @@
+-- This file needs to have same structure as nvconfig.lua
+-- https://github.com/NvChad/ui/blob/v2.5/lua/nvconfig.lua
+-- Please read that file to know all available options :(
+
+---@type ChadrcConfig
+local M = {}
+
+M.base46 = {
+ theme = "chadwal",
+ transparency = false,
+
+ hl_override = {
+ Comment = { italic = true },
+ ["@comment"] = { italic = true },
+ },
+}
+
+return M