29 lines
882 B
Plaintext
29 lines
882 B
Plaintext
set nocompatible " be iMproved, required
|
|
filetype off " required
|
|
|
|
set rtp+=~/.vim/bundle/Vundle.vim
|
|
call vundle#begin()
|
|
Plugin 'VundleVim/Vundle.vim'
|
|
|
|
"Plugins installés depuis Vim Awesome avec le gestionnaire Vundle
|
|
Plugin 'preservim/nerdtree'
|
|
Plugin 'mbbill/undotree'
|
|
Plugin 'jeffkreeftmeijer/vim-numbertoggle'
|
|
Plugin 'jodosha/vim-devnotes'
|
|
Plugin 'joshdick/onedark.vim'
|
|
Plugin 'flazz/vim-colorschemes'
|
|
Plugin 'ervandew/supertab'
|
|
Plugin 'tpope/vim-fugitive'
|
|
Plugin 'jiangmiao/auto-pairs'
|
|
Plugin 'tpope/vim-commentary'
|
|
Plugin 'vim-airline/vim-airline'
|
|
Plugin 'vim-airline/vim-airline-themes'
|
|
Plugin 'liuchengxu/vim-which-key'
|
|
Plugin 'mhinz/vim-startify'
|
|
Plugin 'junegunn/fzf'
|
|
Plugin 'junegunn/fzf.vim'
|
|
Plugin 'romgrk/winteract.vim'
|
|
Plugin 'kien/rainbow_parentheses.vim'
|
|
|
|
call vundle#end() " required
|
|
filetype plugin indent on " required |