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, +}