Guide
vim-pathogen
1 2
| mkdir -p ~/.vim/autoload ~/.vim/bundle curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim
|
vim ~/.vimrc
1 2 3
| execute pathogen#infect() syntax on filetype plugin indent on
|
how to auto install vim plugin
download plugin to ~/.vim/bundle
, and auto reload by vim-pathogen
1 2 3 4 5 6 7 8 9
| cd ~/.vim/bundle git clone https://github.com/ervandew/supertab.git git clone https://github.com/plasticboy/vim-markdown.git ```
```bash cd ~/.vim/bundle git clone https://github.com/rkulla/pydiction.git
|
vim ~/.vimrc
1 2 3
| filetype plugin on let g:pydiction_location = '~/.vim/bundle/pydiction/complete-dict' let g:pydiction_menu_height = 3
|
Reference
History