diff options
Diffstat (limited to '')
| -rw-r--r-- | lua/pml68/plugins.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lua/pml68/plugins.lua b/lua/pml68/plugins.lua index 7374953..8c17a00 100644 --- a/lua/pml68/plugins.lua +++ b/lua/pml68/plugins.lua @@ -1,4 +1,16 @@ local plugins = { + -- Colorizer + { + "NvChad/nvim-colorizer.lua", + event = "BufReadPost", + config = function() + require("colorizer").setup() + + vim.defer_fn(function() + require("colorizer").attach_to_buffer(0) + end, 0) + end + }, -- Indent Blankline { "lukas-reineke/indent-blankline.nvim", |
