@@ -8,27 +8,27 @@ Comment functions so powerful—no comment necessary.
88
99#### [ Vim-Plug] ( https://github.com/junegunn/vim-plug )
1010
11- 1 . Add ` Plug 'scrooloose /nerdcommenter' ` to your vimrc file.
11+ 1 . Add ` Plug 'preservim /nerdcommenter' ` to your vimrc file.
12122 . Reload your vimrc or restart
13133 . Run ` :PlugInstall `
1414
1515#### [ Vundle] ( https://github.com/VundleVim/Vundle.vim ) or similar
1616
17- 1 . Add ` Plugin 'scrooloose /nerdcommenter' ` to your vimrc file.
17+ 1 . Add ` Plugin 'preservim /nerdcommenter' ` to your vimrc file.
18182 . Reload your vimrc or restart
19193 . Run ` :BundleInstall `
2020
2121#### [ NeoBundle] ( https://github.com/Shougo/neobundle.vim )
2222
23- 1 . Add ` NeoBundle 'scrooloose /nerdcommenter' ` to your vimrc file.
23+ 1 . Add ` NeoBundle 'preservim /nerdcommenter' ` to your vimrc file.
24242 . Reload your vimrc or restart
25253 . Run ` :NeoUpdate `
2626
2727#### [ Pathogen] ( https://github.com/tpope/vim-pathogen )
2828
2929``` sh
3030cd ~ /.vim/bundle
31- git clone https://github.com/scrooloose /nerdcommenter.git
31+ git clone https://github.com/preservim /nerdcommenter.git
3232```
3333
3434### Manual Installation
@@ -39,18 +39,18 @@ git clone https://github.com/scrooloose/nerdcommenter.git
3939
4040``` sh
4141curl -fLo ~ /.vim/plugin/NERD_Commenter.vim --create-dirs \
42- https://raw.githubusercontent.com/scrooloose /nerdcommenter/master/plugin/NERD_commenter.vim
42+ https://raw.githubusercontent.com/preservim /nerdcommenter/master/plugin/NERD_commenter.vim
4343curl -fLo ~ /.vim/doc/NERD_Commenter.txt --create-dirs \
44- https://raw.githubusercontent.com/scrooloose /nerdcommenter/master/doc/NERD_commenter.txt
44+ https://raw.githubusercontent.com/preservim /nerdcommenter/master/doc/NERD_commenter.txt
4545```
4646
4747#### Windows (PowerShell)
4848
4949``` powershell
5050md ~\vimfiles\plugin
5151md ~\vimfiles\doc
52- $pluguri = 'https://raw.githubusercontent.com/scrooloose /nerdcommenter/master/plugin/NERD_commenter.vim'
53- $docsuri = 'https://raw.githubusercontent.com/scrooloose /nerdcommenter/master/doc/NERD_commenter.txt'
52+ $pluguri = 'https://raw.githubusercontent.com/preservim /nerdcommenter/master/plugin/NERD_commenter.vim'
53+ $docsuri = 'https://raw.githubusercontent.com/preservim /nerdcommenter/master/doc/NERD_commenter.txt'
5454(New-Object Net.WebClient).DownloadFile($pluguri, $ExecutionContext.SessionState.Path.GetUnresolvedProviderPathFromPSPath("~\vimfiles\plugin\NERD_commenter.vim"))
5555(New-Object Net.WebClient).DownloadFile($docsuri, $ExecutionContext.SessionState.Path.GetUnresolvedProviderPathFromPSPath("~\vimfiles\doc\NERD_commenter.txt"))
5656```
0 commit comments