summaryrefslogtreecommitdiff
path: root/.vimrc
diff options
context:
space:
mode:
Diffstat (limited to '.vimrc')
-rwxr-xr-x.vimrc32
1 files changed, 32 insertions, 0 deletions
diff --git a/.vimrc b/.vimrc
new file mode 100755
index 0000000..7b1dd78
--- /dev/null
+++ b/.vimrc
@@ -0,0 +1,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