Skip to content

Instantly share code, notes, and snippets.

@hirejohnsalcedo
Created July 25, 2017 21:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hirejohnsalcedo/04e616b78f8f72f019a976df7cbb451e to your computer and use it in GitHub Desktop.
Save hirejohnsalcedo/04e616b78f8f72f019a976df7cbb451e to your computer and use it in GitHub Desktop.
set t_Co=256
syntax on
set background=dark
set nocompatible
set number
filetype off
set tabstop=2 shiftwidth=2 expandtab
call plug#begin('~/.vim/plugged')
Plug 'VundleVim/Vundle.vim'
" Javascript Syntax
Plug 'sbdchd/neoformat'
Plug 'jelera/vim-javascript-syntax'
Plug 'jiangmiao/auto-pairs'
call plug#end()
filetype plugin indent on
autocmd BufWritePre *.js Neoformat
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment