09/24/2025
This commit is contained in:
parent
e947649cb0
commit
e945588f4e
6 changed files with 314 additions and 6 deletions
|
|
@ -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,
|
||||
},
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue