Skip to content

Commit d5ac954

Browse files
committed
fix: migrate from nvim-colorizer to nvim-highlight-colors
1 parent 59fab90 commit d5ac954

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/content/docs/configuration/customizing_plugins.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -445,10 +445,10 @@ return {
445445

446446
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:
447447

448-
```lua title="lua/plugins/nvim-colorizer.lua" {4}
448+
```lua title="lua/plugins/indent-blankline.lua" {4}
449449
return {
450450
{
451-
"NvChad/nvim-colorizer.lua",
451+
"lukas-reineke/indent-blankline.nvim",
452452
event = "User AstroFile",
453453
},
454454
}

src/content/docs/reference/default_plugins.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ title: Default Plugins
1313
| [L3MON4D3/LuaSnip](https://github.com/L3MON4D3/LuaSnip) | Snippet Engine |
1414
| [MunifTanjim/nui.nvim](https://github.com/MunifTanjim/nui.nvim) | UI Component Library (for Neo-Tree) |
1515
| [NMAC427/guess-indent.nvim](https://github.com/NMAC427/guess-indent.nvim) | Automatic Indentation Detection |
16-
| [NvChad/nvim-colorizer.lua](https://github.com/NvChad/nvim-colorizer.lua) | Highlight Color Strings |
1716
| [akinsho/toggleterm.nvim](https://github.com/akinsho/toggleterm.nvim) | Terminal Management |
17+
| [brenoprata10/nvim-highlight-colors](https://github.com/brenoprata10/nvim-highlight-colors) | Highlight Color Strings |
1818
| [echasnovski/mini.bufremove](https://github.com/echasnovski/mini.bufremove) | Buffer Removal |
1919
| [echasnovski/mini.icons](https://github.com/echasnovski/mini.icons) | Icon Provider |
2020
| [folke/lazy.nvim](https://github.com/folke/lazy.nvim) | Plugin Management |

0 commit comments

Comments
 (0)