Last active
July 31, 2018 10:01
-
-
Save rhrn/7ecff6c49e2c12467da8e8e9d5f3fff9 to your computer and use it in GitHub Desktop.
Install vim plugin from scratch / vim-plug / editorconfig
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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