diff options
author | Santo Cariotti <dcariotti24@gmail.com> | 2020-01-30 21:08:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-30 21:08:29 +0100 |
commit | 888a0d29a41d8ddadf6085d807acfaf80a05ce12 (patch) | |
tree | 38b5352e8e0b9cd09d2cb71cb3e067ccba0979e2 | |
parent | 1f52162ee0fcacdb0bc1b5190ade0fc0b779aa68 (diff) |
Update .vimrc
-rwxr-xr-x | .vimrc | 26 |
1 files changed, 10 insertions, 16 deletions
@@ -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 |