add nvim config

This commit is contained in:
Benjamin Palko 2024-03-02 20:20:51 -05:00
parent 01dae7e4ca
commit 460bd73aed
30 changed files with 2689 additions and 0 deletions

View file

@ -0,0 +1,19 @@
-- To find any highlight groups: "<cmd> Telescope highlights"
-- Each highlight group can take a table with variables fg, bg, bold, italic, etc
-- base30 variable names can also be used as colors
local M = {}
---@type Base46HLGroupsList
M.override = {
Comment = {
italic = true,
},
}
---@type HLTable
M.add = {
NvimTreeOpenedFolderName = { fg = "green", bold = true },
}
return M