Skip to content

Instantly share code, notes, and snippets.

@twilson63
Last active October 1, 2017 19:51
Show Gist options
  • Save twilson63/a5018cf7ce4fc45e73ba152f72640bca to your computer and use it in GitHub Desktop.
Save twilson63/a5018cf7ce4fc45e73ba152f72640bca to your computer and use it in GitHub Desktop.
Easy Vim Setup
{
"esversion": 6,
"asi": true
}
call plug#begin()
Plug 'tpope/vim-sensible'
Plug 'wookiehangover/jshint.vim'
call plug#end()

Vim Setup

curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
    https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim

.vimrc

call plug#begin()
Plug 'tpope/vim-sensible'
Plug 'wookiehangover/jshint.vim'
call plug#end()

:PlugInstall

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment