Skip to content

Instantly share code, notes, and snippets.

@rhrn
Last active July 31, 2018 10:01
Show Gist options
  • Save rhrn/7ecff6c49e2c12467da8e8e9d5f3fff9 to your computer and use it in GitHub Desktop.
Save rhrn/7ecff6c49e2c12467da8e8e9d5f3fff9 to your computer and use it in GitHub Desktop.
Install vim plugin from scratch / vim-plug / editorconfig
mkdir -p ~/.vim/autoload
curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
echo "
call plug#begin('~/.vim/plugged')
Plug 'editorconfig/editorconfig-vim'
call plug#end()
" >> ~/.vimrc
vim +PlugInstall editorconfig-vim +qall
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment