diff options
-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 |