summaryrefslogtreecommitdiff
path: root/.vimrc
blob: 7b1dd7837d07088b8b012fcb476103be85ed16ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
set number
set tabstop=4
set shiftwidth=4
set expandtab    
set runtimepath+=~/.vim/bundle/swift.vim

set autoindent
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'

call vundle#end()            " required
filetype plugin indent on    " required

syntax on
colorscheme gruvbox-hard