Skip to content

Commit

Permalink
Update links for 'nvim-web-devicons' and 'nvim-tree.lua'.
Browse files Browse the repository at this point in the history
  • Loading branch information
echasnovski committed Dec 10, 2022
1 parent 6402c79 commit 159c2d6
Show file tree
Hide file tree
Showing 12 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ This is the list of modules I currently intend to implement eventually (as my fr

- 'mini.basics' - configurable collection of options and mappings sets intended mostly for quick "up and running" Neovim config. Something like a combination of [tpope/vim-sensible](https://github.com/tpope/vim-sensible) and [tpope/vim-unimpaired](https://github.com/tpope/vim-unimpaired).
- 'mini.clue' - "show as you type" floating window with customizable information. Something like [folke/which-key.nvim](https://github.com/folke/which-key.nvim) and [anuvyklack/hydra.nvim](https://github.com/anuvyklack/hydra.nvim)
- 'mini.filetree' - file tree viewer. Simplified version of [kyazdani42/nvim-tree](https://github.com/kyazdani42/nvim-tree.lua).
- 'mini.filetree' - file tree viewer. Simplified version of [nvim-tree/nvim-tree.lua](https://github.com/nvim-tree/nvim-tree.lua).
- 'mini.snippets' - work with snippets. Something like [L3MON4D3/LuaSnip](https://github.com/L3MON4D3/LuaSnip) but only with more straightforward functionality.
- 'mini.swap' - exchange two regions of text. Something like [tommcdo/vim-exchange](https://github.com/tommcdo/vim-exchange).
- 'mini.terminals' - coherently manage terminal windows and send text from buffers to terminal windows. Something like [kassio/neoterm](https://github.com/kassio/neoterm).
2 changes: 1 addition & 1 deletion doc/mini-base16.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Supported highlight groups:
- 'glepnir/lspsaga.nvim'
- 'hrsh7th/nvim-cmp'
- 'justinmk/vim-sneak'
- 'kyazdani42/nvim-tree.lua'
- 'nvim-tree/nvim-tree.lua'
- 'lewis6991/gitsigns.nvim'
- 'lukas-reineke/indent-blankline.nvim'
- 'neoclide/coc.nvim'
Expand Down
2 changes: 1 addition & 1 deletion doc/mini-statusline.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ without them):
- Nerd font (to support extra icons).
- Plugin 'lewis6991/gitsigns.nvim' for Git information in
|MiniStatusline.section_git|. If missing, no section will be shown.
- Plugin 'kyazdani42/nvim-web-devicons' for filetype icons in
- Plugin 'nvim-tree/nvim-web-devicons' for filetype icons in
`MiniStatusline.section_fileinfo`. If missing, no icons will be shown.

# Setup~
Expand Down
4 changes: 2 additions & 2 deletions doc/mini-tabline.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ What it doesn't do:

Suggested dependencies (provide extra functionality, tabline will work
without them):
- Plugin 'kyazdani42/nvim-web-devicons' for filetype icons near the buffer
- Plugin 'nvim-tree/nvim-web-devicons' for filetype icons near the buffer
name. If missing, no icons will be shown.

# Setup~
Expand Down Expand Up @@ -81,7 +81,7 @@ Module config
Default values:
>
MiniTabline.config = {
-- Whether to show file icons (requires 'kyazdani42/nvim-web-devicons')
-- Whether to show file icons (requires 'nvim-tree/nvim-web-devicons')
show_icons = true,
-- Whether to set Vim's settings for tabline (make it always shown and
Expand Down
4 changes: 2 additions & 2 deletions doc/mini.txt
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ Table of contents:
functions) along with builtin default. For full experience needs [Nerd
font](https://www.nerdfonts.com/),
[gitsigns.nvim](https://github.com/lewis6991/gitsigns.nvim) plugin, and
[nvim-web-devicons](https://github.com/kyazdani42/nvim-web-devicons)
[nvim-web-devicons](https://github.com/nvim-tree/nvim-web-devicons)
plugin (but works without any them).
- |MiniSurround| - fast and feature-rich surround plugin. Add, delete,
replace, find, highlight surrounding (like pair of parenthesis, quotes,
Expand All @@ -166,7 +166,7 @@ Table of contents:
- |MiniTabline| - minimal tabline which always shows listed (see 'buflisted')
buffers. Allows showing extra information section in case of multiple vim
tabpages. For full experience needs
[nvim-web-devicons](https://github.com/kyazdani42/nvim-web-devicons).
[nvim-web-devicons](https://github.com/nvim-tree/nvim-web-devicons).
- |MiniTrailspace| - automatic highlighting of trailing whitespace with
functionality to remove it.

Expand Down
4 changes: 2 additions & 2 deletions lua/mini/base16.lua
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
--- - 'glepnir/lspsaga.nvim'
--- - 'hrsh7th/nvim-cmp'
--- - 'justinmk/vim-sneak'
--- - 'kyazdani42/nvim-tree.lua'
--- - 'nvim-tree/nvim-tree.lua'
--- - 'lewis6991/gitsigns.nvim'
--- - 'lukas-reineke/indent-blankline.nvim'
--- - 'neoclide/coc.nvim'
Expand Down Expand Up @@ -822,7 +822,7 @@ H.apply_palette = function(palette, use_cterm)
hi('SneakLabel', {fg=p.base00, bg=p.base0E, attr='bold', sp=nil})
end

if H.has_integration('kyazdani42/nvim-tree.lua') then
if H.has_integration('nvim-tree/nvim-tree.lua') then
hi('NvimTreeExecFile', {fg=p.base0B, bg=nil, attr='bold', sp=nil})
hi('NvimTreeFolderIcon', {fg=p.base03, bg=nil, attr=nil, sp=nil})
hi('NvimTreeGitDeleted', {fg=p.base08, bg=nil, attr=nil, sp=nil})
Expand Down
4 changes: 2 additions & 2 deletions lua/mini/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@
--- functions) along with builtin default. For full experience needs [Nerd
--- font](https://www.nerdfonts.com/),
--- [gitsigns.nvim](https://github.com/lewis6991/gitsigns.nvim) plugin, and
--- [nvim-web-devicons](https://github.com/kyazdani42/nvim-web-devicons)
--- [nvim-web-devicons](https://github.com/nvim-tree/nvim-web-devicons)
--- plugin (but works without any them).
--- - |MiniSurround| - fast and feature-rich surround plugin. Add, delete,
--- replace, find, highlight surrounding (like pair of parenthesis, quotes,
Expand All @@ -166,7 +166,7 @@
--- - |MiniTabline| - minimal tabline which always shows listed (see 'buflisted')
--- buffers. Allows showing extra information section in case of multiple vim
--- tabpages. For full experience needs
--- [nvim-web-devicons](https://github.com/kyazdani42/nvim-web-devicons).
--- [nvim-web-devicons](https://github.com/nvim-tree/nvim-web-devicons).
--- - |MiniTrailspace| - automatic highlighting of trailing whitespace with
--- functionality to remove it.
---@tag mini.nvim
Expand Down
2 changes: 1 addition & 1 deletion lua/mini/statusline.lua
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
--- - Nerd font (to support extra icons).
--- - Plugin 'lewis6991/gitsigns.nvim' for Git information in
--- |MiniStatusline.section_git|. If missing, no section will be shown.
--- - Plugin 'kyazdani42/nvim-web-devicons' for filetype icons in
--- - Plugin 'nvim-tree/nvim-web-devicons' for filetype icons in
--- `MiniStatusline.section_fileinfo`. If missing, no icons will be shown.
---
--- # Setup~
Expand Down
4 changes: 2 additions & 2 deletions lua/mini/tabline.lua
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
---
--- Suggested dependencies (provide extra functionality, tabline will work
--- without them):
--- - Plugin 'kyazdani42/nvim-web-devicons' for filetype icons near the buffer
--- - Plugin 'nvim-tree/nvim-web-devicons' for filetype icons near the buffer
--- name. If missing, no icons will be shown.
---
--- # Setup~
Expand Down Expand Up @@ -112,7 +112,7 @@ end
--- Default values:
---@eval return MiniDoc.afterlines_to_code(MiniDoc.current.eval_section)
MiniTabline.config = {
-- Whether to show file icons (requires 'kyazdani42/nvim-web-devicons')
-- Whether to show file icons (requires 'nvim-tree/nvim-web-devicons')
show_icons = true,

-- Whether to set Vim's settings for tabline (make it always shown and
Expand Down
2 changes: 1 addition & 1 deletion readmes/mini-base16.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Supported highlight groups:
- [glepnir/lspsaga.nvim](https://github.com/glepnir/lspsaga.nvim)
- [hrsh7th/nvim-cmp](https://github.com/hrsh7th/nvim-cmp)
- [justinmk/vim-sneak](https://github.com/justinmk/vim-sneak)
- [kyazdani42/nvim-tree.lua](https://github.com/kyazdani42/nvim-tree.lua)
- [nvim-tree/nvim-tree.lua](https://github.com/nvim-tree/nvim-tree.lua)
- [lewis6991/gitsigns.nvim](https://github.com/lewis6991/gitsigns.nvim)
- [lukas-reineke/indent-blankline.nvim](https://github.com/lukas-reineke/indent-blankline.nvim)
- [neoclide/coc.nvim](https://github.com/neoclide/coc.nvim)
Expand Down
2 changes: 1 addition & 1 deletion readmes/mini-statusline.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

### Minimal and fast statusline module with opinionated default look

For full experience needs [Nerd font](https://www.nerdfonts.com/), [lewis6991/gitsigns.nvim](https://github.com/lewis6991/gitsigns.nvim) plugin, and [kyazdani42/nvim-web-devicons](https://github.com/kyazdani42/nvim-web-devicons) plugin (but works without any of them).
For full experience needs [Nerd font](https://www.nerdfonts.com/), [lewis6991/gitsigns.nvim](https://github.com/lewis6991/gitsigns.nvim) plugin, and [nvim-tree/nvim-web-devicons](https://github.com/nvim-tree/nvim-web-devicons) plugin (but works without any of them).

See more details in [Features](#features) and [help file](../doc/mini-statusline.txt).

Expand Down
4 changes: 2 additions & 2 deletions readmes/mini-tabline.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

### Minimal and fast tabline showing listed buffers

For full experience needs [kyazdani42/nvim-web-devicons](https://github.com/kyazdani42/nvim-web-devicons) plugin (but works without it).
For full experience needs [nvim-tree/nvim-web-devicons](https://github.com/nvim-tree/nvim-web-devicons) plugin (but works without it).

See more details in [Features](#features) and [help file](../doc/mini-tabline.txt).

Expand Down Expand Up @@ -109,7 +109,7 @@ Here are code snippets for some common installation methods (use only one):
```lua
-- No need to copy this inside `setup()`. Will be used automatically.
{
-- Whether to show file icons (requires 'kyazdani42/nvim-web-devicons')
-- Whether to show file icons (requires 'nvim-tree/nvim-web-devicons')
show_icons = true,

-- Whether to set Vim's settings for tabline (make it always shown and
Expand Down

0 comments on commit 159c2d6

Please sign in to comment.