fix: make more clear how to froze a plugin

This commit is contained in:
saccarosium 2022-05-27 13:37:04 +02:00
parent 8fdabfba0b
commit 69f7b88f60
2 changed files with 6 additions and 0 deletions

View File

@ -135,6 +135,9 @@ Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
" Unmanaged plugin (manually installed and updated)
Plug '~/my-prototype-plugin'
" Prevent plugin to be updated unless specified
Plug 'junegunn/vim-easy-align', {'frozen': '1'}
" Initialize plugin system
call plug#end()
```

View File

@ -171,6 +171,9 @@ Example~
" Unmanaged plugin (manually installed and updated)
Plug '~/my-prototype-plugin'
" Prevent plugin to be updated unless explicitly specified
Plug 'junegunn/vim-easy-align', {'frozen': '1'}
" Initialize plugin system
call plug#end()
<