summaryrefslogtreecommitdiff
path: root/.vimrc
diff options
context:
space:
mode:
authorSanto Cariotti <dcariotti24@gmail.com>2020-01-30 21:08:29 +0100
committerGitHub <noreply@github.com>2020-01-30 21:08:29 +0100
commit888a0d29a41d8ddadf6085d807acfaf80a05ce12 (patch)
tree38b5352e8e0b9cd09d2cb71cb3e067ccba0979e2 /.vimrc
parent1f52162ee0fcacdb0bc1b5190ade0fc0b779aa68 (diff)
Update .vimrc
Diffstat (limited to '.vimrc')
-rwxr-xr-x.vimrc26
1 files 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