Skip to content

Commit

Permalink
feat(color): add nvim-highlight-colors
Browse files Browse the repository at this point in the history
  • Loading branch information
mehalter committed Apr 9, 2024
1 parent 9543573 commit f2d802f
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lua/astrocommunity/color/nvim-highlight-colors/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# nvim-highlight-colors

Highlight colors for neovim

**Repository:** <https://github.com/brenoprata10/nvim-highlight-colors>
18 changes: 18 additions & 0 deletions lua/astrocommunity/color/nvim-highlight-colors/init.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
return {
{ "NvChad/nvim-colorizer.lua", enabled = false },
{
"brenoprata10/nvim-highlight-colors",
event = "User AstroFile",
cmd = "HighlightColors",
dependencies = {
{
"AstroNvim/astrocore",
opts = function(_, opts)
local maps = opts.mappings
maps.n["<Leader>uz"] = { function() vim.cmd.HighlightColors "Toggle" end, desc = "Toggle color highlight" }
end,
},
},
opts = { enabled_named_colors = false },
},
}

0 comments on commit f2d802f

Please sign in to comment.