Skip to content
Snippets Groups Projects
Commit ee8f14d3 authored by mtrame's avatar mtrame
Browse files
parents 273ab56d eb72d4a4
No related branches found
No related tags found
No related merge requests found
......@@ -156,6 +156,13 @@ imap <Tab> <C-p>
execute pathogen#infect()
"------------------------------------------------------------
" Should install vim-plug if not already installed
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
" Specify a directory for plugins
" - For Neovim: ~/.local/share/nvim/plugged
" - Avoid using standard Vim directory names like 'plugin'
......@@ -195,6 +202,11 @@ Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
" Unmanaged plugin (manually installed and updated)
Plug '~/my-prototype-plugin'
" TODO: Pywal colorscheme for i3 (actually might work elsewhere)
"Plug 'dylanaraps/wal.vim'
"colorscheme wal
" Initialize plugin system
" Start up NERDTree when no file is specified
......
README 0 → 100644
Run ./pathogen_install.h to install packages
Read TODOs in .vimrc and uncomment packages as you please
$(mkdir -p ~/.vim/autoload ~/.vim/bundle && \
curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment