Update nvim-web-devicons link (#1000)

This commit is contained in:
Firas Khalil Khana 2023-03-30 07:05:54 +03:00 committed by GitHub
parent e99d733e02
commit 6b6c18023d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -73,7 +73,7 @@ Last Updated On: 18-04-2022
```vim ```vim
Plug 'nvim-lualine/lualine.nvim' Plug 'nvim-lualine/lualine.nvim'
" If you want to have icons in your statusline choose one of these " If you want to have icons in your statusline choose one of these
Plug 'kyazdani42/nvim-web-devicons' Plug 'nvim-tree/nvim-web-devicons'
``` ```
### [packer.nvim](https://github.com/wbthomason/packer.nvim) ### [packer.nvim](https://github.com/wbthomason/packer.nvim)
@ -81,7 +81,7 @@ Plug 'kyazdani42/nvim-web-devicons'
```lua ```lua
use { use {
'nvim-lualine/lualine.nvim', 'nvim-lualine/lualine.nvim',
requires = { 'kyazdani42/nvim-web-devicons', opt = true } requires = { 'nvim-tree/nvim-web-devicons', opt = true }
} }
``` ```