Fix support for native vim packages (#733)
This commit is contained in:
parent
986318a12e
commit
c2c2edd7b4
2 changed files with 6 additions and 1 deletions
|
@ -149,7 +149,6 @@ You can also install your plugins, for instance, via pathogen you can install [v
|
||||||
|
|
||||||
You can also install plugins without any plugin manager (vim 8+ required):
|
You can also install plugins without any plugin manager (vim 8+ required):
|
||||||
|
|
||||||
* Add `packloadall` to your `.vimrc` file
|
|
||||||
* Create pack plugin directory:\
|
* Create pack plugin directory:\
|
||||||
`mkdir -p ~/.vim_runtime/pack/plugins/start`
|
`mkdir -p ~/.vim_runtime/pack/plugins/start`
|
||||||
* Clone the plugin that you want in that directory, for example:\
|
* Clone the plugin that you want in that directory, for example:\
|
||||||
|
|
|
@ -5,6 +5,12 @@
|
||||||
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
|
|
||||||
|
|
||||||
|
""""""""""""""""""""""""""""""
|
||||||
|
" => Enable native vim packages as described in the README
|
||||||
|
""""""""""""""""""""""""""""""
|
||||||
|
set packpath+=~/.vim_runtime
|
||||||
|
|
||||||
|
|
||||||
""""""""""""""""""""""""""""""
|
""""""""""""""""""""""""""""""
|
||||||
" => Load pathogen paths
|
" => Load pathogen paths
|
||||||
""""""""""""""""""""""""""""""
|
""""""""""""""""""""""""""""""
|
||||||
|
|
Loading…
Reference in a new issue