vim plug replaced vundle as it is no longer maintained

This commit is contained in:
Stefen Auris 2018-03-29 15:13:30 -04:00
parent c05ad0dcbe
commit b80acdc07a
4 changed files with 22 additions and 23 deletions

3
.gitignore vendored
View file

@ -1,3 +1,4 @@
cache/
log/
vim/.vim/bundle/**
vim/.vim/plugged/**
vim/.vim/autoload/plug.vim

View file

@ -9,5 +9,4 @@
[branch "master"]
remote = origin
merge = refs/heads/master
[submodule "vim/.vim/bundle/Vundle.vim"]
url = https://github.com/VundleVim/Vundle.vim.git
[

@ -1 +0,0 @@
Subproject commit 9a38216a1c0c597f978d73547d37681fc689c90d

View file

@ -1,28 +1,28 @@
" => Vundle
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()
" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
" Check if vim plug is already installed, if not clone it from github
if empty(glob('~/.vim/autoload/plug.vim'))
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
endif
Plugin 'tpope/vim-sensible'
"Plugin 'altercation/vim-colors-solarized'
Plugin 'vim-airline/vim-airline'
"Plugin 'vim-airline/vim-airline-themes'
Plugin 'Yggdroot/indentLine'
Plugin 'ajh17/VimCompletesMe'
"Plugin 'ctrlpvim/ctrlp.vim'
Plugin 'mhinz/vim-startify'
Plugin 'vim-syntastic/syntastic'
" init VimPlug
call plug#begin('~/.vim/plugged')
Plug 'tpope/vim-sensible'
"Plug 'altercation/vim-colors-solarized'
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
Plug 'Yggdroot/indentLine'
Plug 'ajh17/VimCompletesMe'
"Plug 'ctrlpvim/ctrlp.vim'
Plug 'mhinz/vim-startify'
Plug 'vim-syntastic/syntastic'
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
" To ignore plugin indent changes, instead use:
"filetype plugin on
call plug#end()
" => Appearance
set t_Co=256