diff --git a/.vim/plugins.vim b/.vim/plugins.vim index 8ab9e15..e24cab1 100644 --- a/.vim/plugins.vim +++ b/.vim/plugins.vim @@ -1,42 +1,42 @@ call plug#begin('~/.vim/plugged') -Plug 'FooSoft/vim-argwrap.git' -Plug 'Lokaltog/vim-easymotion.git' -Plug 'airblade/vim-gitgutter.git' -Plug 'antoyo/vim-licenses.git' -Plug 'bkad/CamelCaseMotion' -Plug 'bling/vim-airline.git' -Plug 'cespare/vim-toml.git' -Plug 'christoomey/vim-sort-motion.git' -Plug 'dhruvasagar/vim-table-mode.git' -Plug 'fatih/vim-go.git' -Plug 'inkarkat/argtextobj.vim.git' -Plug 'junegunn/vim-easy-align.git' -Plug 'kien/ctrlp.vim.git' -Plug 'mattn/emmet-vim.git' -Plug 'michaeljsmith/vim-indent-object.git' -Plug 'nathanaelkane/vim-indent-guides.git' -Plug 'ntpeters/vim-better-whitespace.git' -Plug 'othree/html5.vim.git' -Plug 'pangloss/vim-javascript.git' -Plug 'plasticboy/vim-markdown.git' -Plug 'scrooloose/nerdtree.git' -Plug 'tomasr/molokai.git' -Plug 'tpope/vim-abolish.git' -Plug 'tpope/vim-commentary.git' -Plug 'tpope/vim-eunuch.git' -Plug 'tpope/vim-fugitive.git' -Plug 'tpope/vim-repeat' -Plug 'tpope/vim-speeddating.git' -Plug 'tpope/vim-surround' -Plug 'tpope/vim-unimpaired.git' -Plug 'tyru/open-browser.vim.git' -Plug 'vim-latex/vim-latex.git' +Plug 'https://github.com/FooSoft/vim-argwrap.git' +Plug 'https://github.com/Lokaltog/vim-easymotion.git' +Plug 'https://github.com/airblade/vim-gitgutter.git' +Plug 'https://github.com/antoyo/vim-licenses.git' +Plug 'https://github.com/bkad/CamelCaseMotion' +Plug 'https://github.com/bling/vim-airline.git' +Plug 'https://github.com/cespare/vim-toml.git' +Plug 'https://github.com/christoomey/vim-sort-motion.git' +Plug 'https://github.com/dhruvasagar/vim-table-mode.git' +Plug 'https://github.com/fatih/vim-go.git' +Plug 'https://github.com/inkarkat/argtextobj.vim.git' +Plug 'https://github.com/junegunn/vim-easy-align.git' +Plug 'https://github.com/kien/ctrlp.vim.git' +Plug 'https://github.com/mattn/emmet-vim.git' +Plug 'https://github.com/michaeljsmith/vim-indent-object.git' +Plug 'https://github.com/nathanaelkane/vim-indent-guides.git' +Plug 'https://github.com/ntpeters/vim-better-whitespace.git' +Plug 'https://github.com/othree/html5.vim.git' +Plug 'https://github.com/pangloss/vim-javascript.git' +Plug 'https://github.com/plasticboy/vim-markdown.git' +Plug 'https://github.com/scrooloose/nerdtree.git' +Plug 'https://github.com/tomasr/molokai.git' +Plug 'https://github.com/tpope/vim-abolish.git' +Plug 'https://github.com/tpope/vim-commentary.git' +Plug 'https://github.com/tpope/vim-eunuch.git' +Plug 'https://github.com/tpope/vim-fugitive.git' +Plug 'https://github.com/tpope/vim-repeat' +Plug 'https://github.com/tpope/vim-speeddating.git' +Plug 'https://github.com/tpope/vim-surround' +Plug 'https://github.com/tpope/vim-unimpaired.git' +Plug 'https://github.com/tyru/open-browser.vim.git' +Plug 'https://github.com/vim-latex/vim-latex.git' if has('unix') - Plug 'Valloric/YouCompleteMe.git', { 'do': './install.sh' } - Plug 'marijnh/tern_for_vim', { 'do': 'npm update' } - Plug 'scrooloose/syntastic.git', { 'do': 'sudo npm -g install jshint; sudo pip install pyflakes' } + Plug 'https://github.com/Valloric/YouCompleteMe.git', { 'do': './install.sh' } + Plug 'https://github.com/marijnh/tern_for_vim', { 'do': 'npm update' } + Plug 'https://github.com/scrooloose/syntastic.git', { 'do': 'sudo npm -g install jshint; sudo pip install pyflakes' } endif call plug#end()