feat(nvim): add config

This commit is contained in:
2024-08-03 15:57:18 +04:00
parent 5060cd1068
commit ed3cdde970
14 changed files with 478 additions and 0 deletions

16
nvim/lua/chadrc.lua Normal file
View File

@@ -0,0 +1,16 @@
-- This file needs to have same structure as nvconfig.lua
-- https://github.com/NvChad/ui/blob/v2.5/lua/nvconfig.lua
---@type ChadrcConfig
local M = {}
M.base46 = {
theme = "catppuccin_latte",
-- hl_override = {
-- Comment = { italic = true },
-- ["@comment"] = { italic = true },
-- },
}
return M