1
0
mirror of https://github.com/gryf/.vim.git synced 2025-12-17 11:30:29 +01:00

Vim-plug cleanup

Removed vim-plug from VCS, added method to automatically download
vim-plug.
This commit is contained in:
2017-05-30 18:40:25 +02:00
parent aa998d44b5
commit d4a428e5d4
3 changed files with 7 additions and 2454 deletions

1
.gitignore vendored
View File

@@ -4,3 +4,4 @@ bundle/*
view/*
tags
.netrwhist
autoload/plug.vim

File diff suppressed because it is too large Load Diff

6
vimrc
View File

@@ -3,6 +3,12 @@ set nocompatible "VIM over VI
" vimplug conf {{{
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
call plug#begin('~/.vim/bundle')
Plug 'Rykka/riv.vim'