- vimrc-plugins: Remove vimwiki - vimrc-plugins: Remove vimcompletesme - vimrc-plugins: Remove vimwiki config - vimrc: Move template function from vimrc-plugins - vimrc: create mappings for new wiki/notes system - vimrc: Move functions to own section
21 lines
747 B
Text
21 lines
747 B
Text
" ==============================================================================
|
|
" vimrc-plugins: Plug-in configuration. Using vim-plug.
|
|
" ==============================================================================
|
|
" Fetch & Install Self
|
|
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 | source $MYVIMRC
|
|
endif
|
|
|
|
call plug#begin('~/.vim/bundle')
|
|
Plug 'tpope/vim-fugitive'
|
|
Plug 'tpope/vim-unimpaired'
|
|
Plug 'tpope/vim-commentary'
|
|
|
|
"Plug 'ludovicchabant/vim-gutentags'
|
|
Plug 'sheerun/vim-polyglot'
|
|
|
|
Plug 'junegunn/goyo.vim'
|
|
Plug 'tpope/vim-tbone'
|
|
call plug#end()
|