From 888a0d29a41d8ddadf6085d807acfaf80a05ce12 Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Thu, 30 Jan 2020 21:08:29 +0100 Subject: Update .vimrc --- .vimrc | 26 ++++++++++---------------- 1 file changed, 10 insertions(+), 16 deletions(-) diff --git a/.vimrc b/.vimrc index 7b1dd78..e1a2b68 100755 --- a/.vimrc +++ b/.vimrc @@ -2,31 +2,25 @@ set number set tabstop=4 set shiftwidth=4 set expandtab -set runtimepath+=~/.vim/bundle/swift.vim +set rtp+=~/.vim/bundle/Vundle.vim +call vundle#begin() +Plugin 'VundleVim/Vundle.vim' + +Plugin 'rust-lang/rust.vim' +Plugin 'airblade/vim-gitgutter' -set autoindent +set ai set autoread set encoding=utf-8 set history=1000 set wildignore+=*.pyc set wrap - -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() -" alternatively, pass a path where Vundle should install plugins -"call vundle#begin('~/some/path/here') - -" let Vundle manage Vundle, required -Plugin 'VundleVim/Vundle.vim' -Plugin 'airblade/vim-gitgutter' -Plugin 'davidhalter/jedi-vim' +set paste call vundle#end() " required filetype plugin indent on " required +set nocompatible " be iMproved, required +filetype off " required syntax on colorscheme gruvbox-hard -- cgit v1.2.3-18-g5258