Created
July 25, 2017 21:59
-
-
Save hirejohnsalcedo/04e616b78f8f72f019a976df7cbb451e to your computer and use it in GitHub Desktop.
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
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