Created
March 1, 2017 06:56
-
-
Save rocLv/b687bc13ba50b76681491dc59a8a0cd0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if &compatible | |
| set nocompatible | |
| end | |
| filetype off | |
| set rtp+=~/.vim/bundle/Vundle.vim/ | |
| call vundle#begin() | |
| " Let Vundle manage Vundle | |
| Plugin 'gmarik/Vundle.vim' | |
| " Define bundles via Github repos | |
| Plugin 'christoomey/vim-run-interactive' | |
| Plugin 'croaky/vim-colors-github' | |
| Plugin 'kchmck/vim-coffee-script' | |
| Plugin 'ctrlpvim/ctrlp.vim' | |
| Plugin 'pbrisbin/vim-mkdir' | |
| Plugin 'scrooloose/syntastic' | |
| Plugin 'slim-template/vim-slim' | |
| Plugin 'thoughtbot/vim-rspec' | |
| Plugin 'tpope/vim-bundler' | |
| Plugin 'tpope/vim-endwise' | |
| Plugin 'tpope/vim-eunuch' | |
| Plugin 'tpope/vim-fugitive' | |
| Plugin 'tpope/vim-rails' | |
| Plugin 'tpope/vim-repeat' | |
| Plugin 'tpope/vim-surround' | |
| Plugin 'vim-ruby/vim-ruby' | |
| Plugin 'vim-scripts/ctags.vim' | |
| Plugin 'vim-scripts/matchit.zip' | |
| Plugin 'vim-scripts/tComment' | |
| Plugin 'rocLv/elm.vim' | |
| Plugin 'pangloss/vim-javascript' | |
| Plugin 'mxw/vim-jsx' | |
| Plugin 'ternjs/tern_for_vim' | |
| Plugin 'maksimr/vim-jsbeautify' | |
| Plugin 'godlygeek/tabular' | |
| Plugin 'janko-m/vim-test' | |
| Plugin 'ngmy/vim-rubocop' | |
| Plugin 'SirVer/ultisnips' | |
| Plugin 'cakebaker/scss-syntax.vim' | |
| Plugin 't9md/vim-ruby-xmpfilter' | |
| if filereadable(expand("~/.vimrc.bundles.local")) | |
| source ~/.vimrc.bundles.local | |
| endif | |
| call vundle#end() | |
| filetype on |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment