diff options
| author | Anton Bobov <abobov@gmail.com> | 2016-08-10 00:00:15 +0500 |
|---|---|---|
| committer | Anton Bobov <abobov@gmail.com> | 2016-08-10 00:06:55 +0500 |
| commit | a3a4c9eafbecab8b223e259d331622a132f56e8f (patch) | |
| tree | 293c05f6565dfcbfc5432dd1093f4acab19d5651 /files/.vimrc | |
| parent | c1b50fe8be7d6f576769497dbd9648e49b8a581f (diff) | |
[vim] Change plugin handler from pathogen to vundle.
Diffstat (limited to 'files/.vimrc')
| -rw-r--r-- | files/.vimrc | 85 |
1 files changed, 75 insertions, 10 deletions
diff --git a/files/.vimrc b/files/.vimrc index dcd6a32..13d76ef 100644 --- a/files/.vimrc +++ b/files/.vimrc @@ -1,13 +1,83 @@ " vim: spell foldmethod=marker : -" Setup {{{ +" Setup & Plugins {{{ + +" Setup Vundle set nocompatible +filetype off +set rtp+=~/.vim/bundle/Vundle.vim +call vundle#begin() -filetype off " Do so to reload filetype plugins after pathogen -runtime bundle/vim-pathogen/autoload/pathogen.vim -call pathogen#infect() -syntax on +" Plugins {{{ + +Plugin 'VundleVim/Vundle.vim' + +" Library for other plugins +Plugin 'https://github.com/vim-scripts/L9.git' + +" Git inside vim +Plugin 'https://github.com/tpope/vim-fugitive.git' + +" Intelligent date inc/dec +Plugin 'https://github.com/tpope/vim-speeddating' +" Show colors in CSS format +Plugin 'https://github.com/ap/vim-css-color' +" Load project .vimrc files +Plugin 'https://github.com/MarcWeber/vim-addon-local-vimrc' +" Fuzzy finder +Plugin 'https://github.com/ctrlpvim/ctrlp.vim' +" Finder +Plugin 'https://github.com/vim-scripts/FuzzyFinder.git' +" Solarized colorscheme +Plugin 'https://github.com/altercation/vim-colors-solarized' +" Zen codding +Plugin 'https://github.com/mattn/emmet-vim.git' +" Code snippets +Plugin 'https://github.com/msanders/snipmate.vim' +" Silversearch plugin +Plugin 'https://github.com/rking/ag.vim' +" Support dot command for plugins +Plugin 'https://github.com/tpope/vim-repeat.git' +Plugin 'https://github.com/tpope/vim-surround.git' +" Files tree plugin +Plugin 'https://github.com/scrooloose/nerdtree' +" Commenting text +Plugin 'https://github.com/scrooloose/nerdcommenter.git' +Plugin 'https://github.com/raimondi/delimitmate' +" Syntax check and linting +Plugin 'https://github.com/scrooloose/syntastic.git' +" Text alignment commands +Plugin 'https://github.com/godlygeek/tabular' +" Pasting in vim +Plugin 'https://github.com/ConradIrwin/vim-bracketed-paste' +" File templates +Plugin 'https://github.com/aperezdc/vim-template' +" Code browser +Plugin 'https://github.com/vim-scripts/taglist.vim' + +" File types + +" Ledger +Plugin 'https://github.com/ledger/vim-ledger' +" Nginx +Plugin 'https://github.com/evanmiller/nginx-vim-syntax.git' +" Jade templates +Plugin 'https://github.com/digitaltoad/vim-jade.git' +" Markdown +Plugin 'https://github.com/plasticboy/vim-markdown.git' +" TypeScript +Plugin 'https://github.com/HerringtonDarkholme/yats.vim' +" Orgmode +Plugin 'https://github.com/jceb/vim-orgmode' + +"Plugin 'https://github.com/othree/xml.vim' +"Plugin 'https://github.com/terryma/vim-multiple-cursors' +"Plugin 'https://github.com/motemen/git-vim' + +" }}} +call vundle#end() filetype plugin indent on +syntax on let g:template_dir=$HOME . "/.vim/templates" " }}} @@ -395,11 +465,6 @@ let NERDTreeAutoDeleteBuffer=1 let NERDTreeIgnore = [ '\.pyc$' ] " }}} -" Sparkup {{{ - -let g:sparkupNextMapping = '<c-s>' - -" }}} " Scratch {{{ function! ScratchToggle() |
