Enable colorizer, dashboard, and trouble plugins with initial configs.

This commit is contained in:
Aaron Weinberger 2024-06-20 17:28:34 -04:00
parent 0fe67f0586
commit aebe535298
No known key found for this signature in database
3 changed files with 62 additions and 0 deletions

View file

@ -0,0 +1,14 @@
return {
'norcalli/nvim-colorizer.lua',
config = function()
require('colorizer').setup({
'css',
'scss',
'javascript',
'javascriptreact',
'typescript',
'typescriptreact',
'html',
})
end,
}