Skip to content

Commit

Permalink
fix: migrate from nvim-colorizer to nvim-highlight-colors
Browse files Browse the repository at this point in the history
  • Loading branch information
mehalter committed Sep 18, 2024
1 parent 43af2b6 commit 16b6b4d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/content/docs/configuration/customizing_plugins.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -445,10 +445,10 @@ return {

AstroNvim has many plugins that we load on the first real file that is open. This is used internally for plugins like Treesitter, LSP related plugins, and other various plugins related to interacting with files. We achieve this by creating a custom `User` `autocmd` event called `AstroFile`. This can also be used by users for lazy loading plugins on the first real file that is opened:

```lua title="lua/plugins/nvim-colorizer.lua" {4}
```lua title="lua/plugins/indent-blankline.lua" {4}
return {
{
"NvChad/nvim-colorizer.lua",
"lukas-reineke/indent-blankline.nvim",
event = "User AstroFile",
},
}
Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/reference/default_plugins.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ title: Default Plugins
| [L3MON4D3/LuaSnip](https://github.com/L3MON4D3/LuaSnip) | Snippet Engine |
| [MunifTanjim/nui.nvim](https://github.com/MunifTanjim/nui.nvim) | UI Component Library (for Neo-Tree) |
| [NMAC427/guess-indent.nvim](https://github.com/NMAC427/guess-indent.nvim) | Automatic Indentation Detection |
| [NvChad/nvim-colorizer.lua](https://github.com/NvChad/nvim-colorizer.lua) | Highlight Color Strings |
| [akinsho/toggleterm.nvim](https://github.com/akinsho/toggleterm.nvim) | Terminal Management |
| [brenoprata10/nvim-highlight-colors](https://github.com/brenoprata10/nvim-highlight-colors) | Highlight Color Strings |
| [echasnovski/mini.bufremove](https://github.com/echasnovski/mini.bufremove) | Buffer Removal |
| [echasnovski/mini.icons](https://github.com/echasnovski/mini.icons) | Icon Provider |
| [folke/lazy.nvim](https://github.com/folke/lazy.nvim) | Plugin Management |
Expand Down

0 comments on commit 16b6b4d

Please sign in to comment.