Changements récents - Rechercher:

Espace Wiki ∂'Alembert
Documentation générale


Espace Guide de survie du SysAdmin
Documentation technique


Espace Guide de survie du Développeur
Pour les développeurs


Espace Institut ∂’Alembert
L'institut


Le Site
À propos du Site
Liste complète des Pages


Aide PmWikiFr

Help PmWiki

GSSA /

vim Plugins

Page mise à jour le 12/06/2024 18:42

Vous êtes dans un espace restreint en écriture.

<< vim | vim | vim fugitive; git dans ton vim >>

Vundle est un gestionnaire de plugin pour git.

Installation de Vundle

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

Configuration de Vundle

  1. Ajouter dans le fichier .vimrc:
set nocompatible " be iMproved, required
filetype off " required

" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()

" install another plugin
Plugin 'commentary.vim'

" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
  1. installer les plugins
    • soit dans vim
      :PluginInstall
      " Installing plugins to /home/patrick/.vim/bundle
      . Plugin 'VundleVim/Vundle.vim'
      . Plugin 'tpope/vim-fugitive'
      . Plugin 'tpope/vim-commentary'
      . Plugin 'tpope/vim-surround'
      . Plugin 'tpope/vim-repeat'
      . Plugin 'chrisbra/unicode.vim'
      . Plugin 'Valloric/YouCompleteMe'
      . Plugin 'fatih/vim-go'
      . Plugin 'hashivim/vim-terraform'
      . Plugin 'dhruvasagar/vim-table-mode'
      . Plugin 'itspriddle/vim-shellcheck'
      * Helptags
    • soit depuis le shell
      vim +PluginInstall

Help

Dans vim

:h vundle

À propos du site Licence Creative Commons Cooked with love in 2014-2023 by pcht
Page mise à jour le 12/06/2024 18:42