feat: add colorizer plugin for hex codes

This commit is contained in:
Simon Lasbrugnas 2024-09-19 03:43:17 +02:00
parent 1dec46d2f7
commit fceb4c35c6
Signed by untrusted user who does not match committer: simon
GPG key ID: 86039876BA6ED8DE
2 changed files with 7 additions and 0 deletions

View file

@ -17,6 +17,7 @@
"mellow.nvim": { "branch": "main", "commit": "5c8b4eaadf190f646f201322f96f00140b6b1a0b" },
"neodev.nvim": { "branch": "main", "commit": "46aa467dca16cf3dfe27098042402066d2ae242d" },
"nvim-cmp": { "branch": "main", "commit": "ae644feb7b67bf1ce4260c231d1d4300b19c6f30" },
"nvim-colorizer.lua": { "branch": "master", "commit": "a065833f35a3a7cc3ef137ac88b5381da2ba302e" },
"nvim-lspconfig": { "branch": "master", "commit": "73e0002b6f211376bbf36c31a2f812aedf6bd6b0" },
"nvim-treesitter": { "branch": "master", "commit": "3c6af36794b26e1bcac3f126b43e0f646154725d" },
"nvim-treesitter-context": { "branch": "master", "commit": "7f7eeaa99e5a9beab518f502292871ae5f20de6f" },

View file

@ -39,4 +39,10 @@ return {
end,
},
{ "mellow-theme/mellow.nvim" },
{
'norcalli/nvim-colorizer.lua',
config = function()
require('colorizer').setup()
end
},
}