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:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -4,3 +4,4 @@ bundle/*
|
||||
view/*
|
||||
tags
|
||||
.netrwhist
|
||||
autoload/plug.vim
|
||||
|
||||
2454
autoload/plug.vim
2454
autoload/plug.vim
File diff suppressed because it is too large
Load Diff
6
vimrc
6
vimrc
@@ -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'
|
||||
|
||||
Reference in New Issue
Block a user