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/ cache/
log/ log/
vim/.vim/bundle/** vim/.vim/plugged/**
vim/.vim/autoload/plug.vim

View file

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