diff options
author | Ekaitz Zárraga <ekaitz.zarraga@gmail.com> | 2016-04-06 19:45:03 +0200 |
---|---|---|
committer | Ekaitz Zárraga <ekaitz.zarraga@gmail.com> | 2016-04-06 19:45:03 +0200 |
commit | 9f192e73a6a74c022b0c032e7b16d1e53f954752 (patch) | |
tree | b42c00ea2c65d30130d3ecaa556870adb9f510cb /vim | |
parent | 3ffd354e66687ea9678c80c01c588a5fbdb9beab (diff) |
add vundle to Vimrc
Diffstat (limited to 'vim')
-rw-r--r-- | vim/.vimrc | 21 |
1 files changed, 21 insertions, 0 deletions
@@ -1,3 +1,24 @@ + +" Vundle stuff ---------------------------------------------- +set nocompatible +filetype plugin off +set rtp+=~/.vim/bundle/Vundle.vim +call vundle#begin() + +" let Vundle manage Vundle, required +Plugin 'VundleVim/Vundle.vim' + +" Post to Wordpress using MarkDown +Plugin 'ekaitz-zarraga/droWMark' + +" Add plugins here + +call vundle#end() " required +" / Vundle stuff end ---------------------------------------- + + + + " Different config for each filetype filetype plugin on |