feat(highlights): implement highlighting module

Highlighting module applies highlighting customizations and other font/color enhancements across several plugins
This commit is contained in:
2024-08-02 09:15:53 -04:00
parent 0f3b9c0469
commit c56be45d65
5 changed files with 310 additions and 55 deletions
+6
View File
@@ -47,3 +47,9 @@ vim.api.nvim_create_autocmd({ "BufEnter", "FocusGained" }, {
)
end,
})
-- Set up autocommands and highlight settings
local load_highlight = require("config.highlight")
-- load_highlight.setup_indent_highlight()
load_highlight.setup_autocommands()
load_highlight.setup_dashboard_highlight()