From 4ddb4399ab92e06827a703ca9c614f3222e0ffc4 Mon Sep 17 00:00:00 2001 From: David Ibia Date: Tue, 5 Mar 2024 12:07:24 +0100 Subject: [PATCH] feat(highlight-colors): add support for nvim-highlight-colors plugin to customize syntax highlighting colors in Neovim --- lua/absolute/after/highlight-colors.lua | 7 +++++++ lua/absolute/plugins/highlight-colors.lua | 6 ++++++ 2 files changed, 13 insertions(+) create mode 100644 lua/absolute/after/highlight-colors.lua create mode 100644 lua/absolute/plugins/highlight-colors.lua diff --git a/lua/absolute/after/highlight-colors.lua b/lua/absolute/after/highlight-colors.lua new file mode 100644 index 0000000..31db234 --- /dev/null +++ b/lua/absolute/after/highlight-colors.lua @@ -0,0 +1,7 @@ +local highlight = require("nvim-highlight-colors") + +highlight.setup({ + enable_tailwind = true, +}) + +highlight.turnOn() diff --git a/lua/absolute/plugins/highlight-colors.lua b/lua/absolute/plugins/highlight-colors.lua new file mode 100644 index 0000000..c255660 --- /dev/null +++ b/lua/absolute/plugins/highlight-colors.lua @@ -0,0 +1,6 @@ +return { + "brenoprata10/nvim-highlight-colors", + config = function() + require("absolute.after.highlight-colors") + end, +}