Add the EditorConfig plugin

This commit is contained in:
Rodolphe Bréard 2021-02-28 12:11:15 +01:00
parent f07dd346d6
commit dfd7bd9730

17
.vimrc
View file

@ -8,15 +8,16 @@ filetype off
" Install all plugins:
" $ vim +PluginInstall +qall
set rtp+=~/.vim/bundle/Vundle.vim " Set the runtime path to include Vundle and initialize.
set rtp+=~/.vim/bundle/Vundle.vim " Set the runtime path to include Vundle and initialize.
call vundle#begin()
Plugin 'VundleVim/Vundle.vim' " Let Vundle manage Vundle, required.
Plugin 'bling/vim-airline' " Lean & mean status/tabline for vim that's light as air.
Plugin 'antoyo/vim-licenses' " Vim Plugin that Provides Commands to Add Licenses at the Top of the Buffer.
Plugin 'breard-r/vim-dnsserial' " Another DNS-zone serial number updater.
Plugin 'sjl/badwolf' " A Vim color scheme.
Plugin 'rust-lang/rust.vim' " Vim configuration for Rust.
Plugin 'cespare/vim-toml' " Vim syntax for TOML.
Plugin 'VundleVim/Vundle.vim' " Let Vundle manage Vundle, required.
Plugin 'bling/vim-airline' " Lean & mean status/tabline for vim that's light as air.
Plugin 'antoyo/vim-licenses' " Vim Plugin that Provides Commands to Add Licenses at the Top of the Buffer.
Plugin 'breard-r/vim-dnsserial' " Another DNS-zone serial number updater.
Plugin 'sjl/badwolf' " A Vim color scheme.
Plugin 'rust-lang/rust.vim' " Vim configuration for Rust.
Plugin 'cespare/vim-toml' " Vim syntax for TOML.
Plugin 'editorconfig/editorconfig-vim' " EditorConfig plugin
call vundle#end()