diff options
Diffstat (limited to 'vim/.vimrc')
| -rw-r--r-- | vim/.vimrc | 19 |
1 files changed, 17 insertions, 2 deletions
@@ -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 + + |
