mirror of
https://github.com/boxpositron/absolute-vim.git
synced 2026-02-28 03:30:36 +00:00
feat(highlight-colors): add support for nvim-highlight-colors plugin to customize syntax highlighting colors in Neovim
This commit is contained in:
7
lua/absolute/after/highlight-colors.lua
Normal file
7
lua/absolute/after/highlight-colors.lua
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
local highlight = require("nvim-highlight-colors")
|
||||||
|
|
||||||
|
highlight.setup({
|
||||||
|
enable_tailwind = true,
|
||||||
|
})
|
||||||
|
|
||||||
|
highlight.turnOn()
|
||||||
6
lua/absolute/plugins/highlight-colors.lua
Normal file
6
lua/absolute/plugins/highlight-colors.lua
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
return {
|
||||||
|
"brenoprata10/nvim-highlight-colors",
|
||||||
|
config = function()
|
||||||
|
require("absolute.after.highlight-colors")
|
||||||
|
end,
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user