From dfd7bd9730c84c1fb46674cfefae4ff74c71ac14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodolphe=20Br=C3=A9ard?= Date: Sun, 28 Feb 2021 12:11:15 +0100 Subject: [PATCH] Add the EditorConfig plugin --- .vimrc | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/.vimrc b/.vimrc index 9e061b0..5b379c3 100644 --- a/.vimrc +++ b/.vimrc @@ -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()