Skip to content

Instantly share code, notes, and snippets.

View strunkandwhite's full-sized avatar

Jack Lenehan strunkandwhite

View GitHub Profile
@strunkandwhite
strunkandwhite / .vimrc
Last active April 5, 2018 22:50
Super important and wonderful vimrc
" remember to git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
" remember to :PluginInstall; append `!` to update or just :PluginUpdate
" prep vundle
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
alias code='function _code(){ cd ~/Dropbox/code/$1; };_code'
alias gu='git pull --rebase'
alias gs='git status'
alias ga='git add .'
alias gp='git push'
alias gc='function _gc() { git commit -m "$1"; };_gc'
if [ -f "/usr/local/opt/bash-git-prompt/share/gitprompt.sh" ]; then
__GIT_PROMPT_DIR="/usr/local/opt/bash-git-prompt/share"
{
"parser": "babel-eslint",
"extends": [
"standard",
"plugin:react/recommended",
"plugin:prettier/recommended"
],
"plugins": ["react", "standard"]
}
{
"trailingComma": "all",
"semi": false,
"singleQuote": true
}