09/24/2025

This commit is contained in:
Grayson Butcher 2025-09-24 11:17:37 -06:00
parent e947649cb0
commit e945588f4e
6 changed files with 314 additions and 6 deletions

View file

@ -2,4 +2,21 @@
-- I promise not to create any merge conflicts in this directory :)
--
-- See the kickstart.nvim README for more information
return {}
print 'plugins.lua is being loaded'
return {
-- Colorizer
{
'norcalli/nvim-colorizer.lua',
config = function()
require('colorizer').setup({
'*', -- Highlight all filetypes
css = { rgb_fn = true },
html = { names = false },
}, {
mode = 'foreground',
})
end,
},
}