Skip to content

Commit b4d704e

Browse files
committed
chore: replace urls from kyazdani42 -> nvim-tree
1 parent 4a01f90 commit b4d704e

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# A File Explorer For Neovim Written In Lua
22

3-
[![CI](https://github.com/kyazdani42/nvim-tree.lua/actions/workflows/ci.yml/badge.svg)](https://github.com/kyazdani42/nvim-tree.lua/actions/workflows/ci.yml)
3+
[![CI](https://github.com/nvim-tree/nvim-tree.lua/actions/workflows/ci.yml/badge.svg)](https://github.com/nvim-tree/nvim-tree.lua/actions/workflows/ci.yml)
44

55
<img align="left" width="143" height="443" src=".github/example.tree.png?raw=true">
66
<img align="left" width="174" height="583" src=".github/example.help.png?raw=true">
@@ -28,24 +28,24 @@
2828

2929
[neovim >=0.7.0](https://github.com/neovim/neovim/wiki/Installing-Neovim)
3030

31-
[nvim-web-devicons](https://github.com/kyazdani42/nvim-web-devicons) is optional and used to display file icons. It requires a [patched font](https://www.nerdfonts.com/).
31+
[nvim-web-devicons](https://github.com/nvim-tree/nvim-web-devicons) is optional and used to display file icons. It requires a [patched font](https://www.nerdfonts.com/).
3232

3333
## Install
3434

3535
Install with [vim-plug](https://github.com/junegunn/vim-plug):
3636

3737
```vim
38-
Plug 'kyazdani42/nvim-web-devicons' " optional, for file icons
39-
Plug 'kyazdani42/nvim-tree.lua'
38+
Plug 'nvim-tree/nvim-web-devicons' " optional, for file icons
39+
Plug 'nvim-tree/nvim-tree.lua'
4040
```
4141

4242
or with [packer](https://github.com/wbthomason/packer.nvim):
4343

4444
```lua
4545
use {
46-
'kyazdani42/nvim-tree.lua',
46+
'nvim-tree/nvim-tree.lua',
4747
requires = {
48-
'kyazdani42/nvim-web-devicons', -- optional, for file icons
48+
'nvim-tree/nvim-web-devicons', -- optional, for file icons
4949
},
5050
tag = 'nightly' -- optional, updated every week. (see issue #1193)
5151
}
@@ -120,7 +120,7 @@ nvim-tree comes with number of mappings; for default mappings please see [:help
120120
* `toggle` has a second parameter which allows to toggle without focusing the explorer (`require"nvim-tree".toggle(false, true)`).
121121
* You can allow nvim-tree to behave like vinegar, see [:help nvim-tree-vinegar](doc/nvim-tree-lua.txt)
122122
* If you `:set nosplitright`, the files will open on the left side of the tree, placing the tree window in the right side of the file you opened.
123-
* You can automatically close the tab/vim when nvim-tree is the last window in the tab: <https://github.com/kyazdani42/nvim-tree.lua/discussions/1115>. WARNING: this can catastrophically fail: <https://github.com/kyazdani42/nvim-tree.lua/issues/1368>. This will not be added to nvim-tree and the team will not provide support / assistance with this, due to complexities in vim event timings and side-effects.
123+
* You can automatically close the tab/vim when nvim-tree is the last window in the tab: <https://github.com/nvim-tree/nvim-tree.lua/discussions/1115>. WARNING: this can catastrophically fail: <https://github.com/nvim-tree/nvim-tree.lua/issues/1368>. This will not be added to nvim-tree and the team will not provide support / assistance with this, due to complexities in vim event timings and side-effects.
124124
* Hide the `.git` folder: `filters = { custom = { "^.git$" } }`. See [:help nvim-tree.filters.custom](doc/nvim-tree-lua.txt).
125125
* To disable the display of icons see [:help nvim-tree.renderer.icons.show](doc/nvim-tree-lua.txt).
126126

@@ -153,7 +153,7 @@ Please attach `$XDG_CACHE_HOME/nvim/nvim-tree.log` if you raise an issue.
153153

154154
*Performance Tips:*
155155

156-
* If you are using fish as an editor shell (which might be fixed in the future), try set `shell=/bin/bash` in your vim config. Alternatively, you can [prevent fish from loading interactive configuration in a non-interactive shell](https://github.com/kyazdani42/nvim-tree.lua/issues/549#issuecomment-1127394585).
156+
* If you are using fish as an editor shell (which might be fixed in the future), try set `shell=/bin/bash` in your vim config. Alternatively, you can [prevent fish from loading interactive configuration in a non-interactive shell](https://github.com/nvim-tree/nvim-tree.lua/issues/549#issuecomment-1127394585).
157157

158158
* Try manually running the git command (see the logs) in your shell e.g. `git --no-optional-locks status --porcelain=v1 --ignored=matching -u`.
159159

doc/nvim-tree-lua.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Features
3131

3232
File Icons
3333

34-
https://github.com/kyazdani42/nvim-web-devicons is optional and used to display file icons. It requires a patched font: https://www.nerdfonts.com
34+
https://github.com/nvim-tree/nvim-web-devicons is optional and used to display file icons. It requires a patched font: https://www.nerdfonts.com
3535

3636
 should look like an open folder.
3737

lua/nvim-tree/renderer/components/git.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ local function warn_status(git_status)
7171
utils.notify.warn(
7272
'Unrecognized git state "'
7373
.. git_status
74-
.. '". Please open up an issue on https://github.com/kyazdani42/nvim-tree.lua/issues with this message.'
74+
.. '". Please open up an issue on https://github.com/nvim-tree/nvim-tree.lua/issues with this message.'
7575
)
7676
end
7777

0 commit comments

Comments
 (0)