diff options
| author | Horus3 | 2015-01-30 01:51:06 +0100 |
|---|---|---|
| committer | Horus3 | 2015-01-30 01:51:06 +0100 |
| commit | 335fac46fa9a8b0eee6665dbbc38cfec6ad101e3 (patch) | |
| tree | 62ba2a0782bbd81be0400ea4b6c2be787b68df4b /vim/.vimrc | |
| parent | b1ebf046fb4780fdb90a30b670dc13b5f62b37d1 (diff) | |
| download | dotfiles-335fac46fa9a8b0eee6665dbbc38cfec6ad101e3.tar.gz | |
Added vundle
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 + + |
