summaryrefslogtreecommitdiff
path: root/vim/.vimrc
diff options
context:
space:
mode:
Diffstat (limited to 'vim/.vimrc')
-rw-r--r--vim/.vimrc19
1 files changed, 17 insertions, 2 deletions
diff --git a/vim/.vimrc b/vim/.vimrc
index 3b24289..28d6d07 100644
--- a/vim/.vimrc
+++ b/vim/.vimrc
@@ -1,3 +1,17 @@
+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()"
+
+Plugin 'gmarik/Vundle.vim'
+Plugin 'fatih/vim-go'
+Plugin 'mattn/emmet-vim'
+
+call vundle#end() " required
+filetype plugin indent on " required
+
set number
set ruler
set ignorecase
@@ -11,12 +25,13 @@ set matchpairs=(:),{:},[:],<:>
set background=dark
syntax enable
-syntax on
-set background=dark
set encoding=utf8
"map! jj <ESC>
+
command W w
command Q q
command WQ wq
command Wq wq
+
+