web-dev-qa-db-fra.com

Installer Vundle pour VIM

Je ne peux pas installer Vundle

J'ai suivi les instructions sur GitHub; 

git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim

et c'est tout ... Voici l'arbre de cd .vim

├── bundle
│   └── Vundle.vim
│       ├── autoload
│       │   ├── vundle
│       │   │   ├── config.vim
│       │   │   ├── installer.vim
│       │   │   └── scripts.vim
│       │   └── vundle.vim
│       ├── changelog.md
│       ├── CONTRIBUTING.md
│       ├── doc
│       │   └── vundle.txt
│       ├── LICENSE-MIT.txt
│       ├── README.md
│       └── test
│           ├── files
│           │   └── test.erl
│           ├── minirc.vim
│           └── vimrc
└── $MYVIMRC

7 répertoires, 13 fichiers

et dans .vimrc 

set nocompatible               " be iMproved
filetype off 

afin d’éditer .vimrc j’ai utilisé dans vim: 

:e $MYVIMRC

Pouvez-vous aider à installer Vundle? 

13
Javittoxs

comme @FDinoff a dit, vous avez manqué les choses qui devraient aller dans vous .vimrc.

voici à quoi cela pourrait ressembler:

" vundle {{{1

" needed to run vundle (but i want this anyways)
set nocompatible

" vundle needs filtype plugins off
" i turn it on later
filetype plugin indent off
syntax off

" set the runtime path for vundle
set rtp+=~/.vim/bundle/Vundle.vim

" start vundle environment
call vundle#begin()

" list of plugins {{{2
" let Vundle manage Vundle (this is required)
"old: Plugin 'gmarik/Vundle.vim'
Plugin 'VundleVim/Vundle.vim'

" to install a plugin add it here and run :PluginInstall.
" to update the plugins run :PluginInstall! or :PluginUpdate
" to delete a plugin remove it here and run :PluginClean
" 

" YOUR LIST OF PLUGINS GOES HERE LIKE THIS:
Plugin 'bling/vim-airline'

" add plugins before this
call vundle#end()

" now (after vundle finished) it is save to turn filetype plugins on
filetype plugin indent on
syntax on

vous pouvez consulter mon .vimrc si vous le souhaitez ( https://github.com/linluk/my-dot-files/blob/master/vimrc ).

comme décrit dans les commentaires, vous devez installer les plugins après les avoir ajoutés à votre .vimrc

étapes pour installer un plugin

  1. vous l'ajoute .vimrc entre call vundle#begin() et call vundle#end()
  2. enregistrer le .vimrc
  3. tapez <ESC>:PluginInstall<CR>

pour mettre à jour les plugins

  1. tapez <ESC>:PluginInstall!<CR> ou <ESC>:PluginUpdate<CR>

pour supprimer un plugin

  1. supprimez-le du .vimrc
  2. enregistrer le .vimrc
  3. tapez <ESC>:PluginClean<CR>
20
linluk

J'ai suivi exactement les étapes décrites par @linluk, mais lorsque j'ouvre un fichier avec vim, je ne vois pas le résultat des nouveaux plug-ins installés. Par exemple, j’ai installé le plug-in "powerline" qui devrait renvoyer au bas de mon écran vim une ligne de statut très élégante, mais lorsque j’ouvre un nouveau fichier, son apparence est toujours identique à celle de jadis. moi, c’est "YCM" (YouCompleteMe), mais je ne peux pas expliquer pourquoi cela fonctionne pour YCM et non pour powerline ou pour d’autres plugins comme Ultisnips.

0
headbanger