feat(nvim): add keymap to toggle highlight-colors

This commit is contained in:
Sergio Laín 2024-05-25 14:09:02 +02:00
parent 06b74684c2
commit edf92ebed8
No known key found for this signature in database
GPG key ID: FB00AF7015FFE76B

View file

@ -2,4 +2,8 @@ return {
"brenoprata10/nvim-highlight-colors",
event = "VeryLazy",
opts = {},
-- stylua: ignore
keys = {
{ "<leader>uc", function() require("nvim-highlight-colors").toggle() end, desc = "Toggle Highlight Colors" },
},
}