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
{ | |
"forms": [ | |
{ | |
"title": "DEMOGRAPHICS", | |
"label": "DEMOGRAPHICS", | |
"name": "DEMOGRAPHICS", | |
"formSections": [ | |
{ | |
"formFields": [ | |
{ |
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
# These go in .bashrc: | |
alias gpsu='git push --set-upstream origin $(git rev-parse --abbrev-ref HEAD)' | |
alias gco='git checkout' | |
alias gr='git rebase' | |
# These go in .git-completion.bash, at the bottom, I guess: | |
__git_complete gco _git_checkout | |
__git_complete gr _git_rebase |
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
" Step 1: Install this: https://github.com/neomake/neomake | |
" Step 2: Put these in your .vimrc: | |
" Neomake settings | |
autocmd! BufWritePost,BufEnter * Neomake | |
let g:neomake_javascript_enabled_makers = ['eslint'] | |
let g:neomake_scss_enabled_makers = ['scss_lint'] | |
let g:neomake_python_enabled_makers = ['pylint', 'python'] | |
" Step 3: Delete syntastic stuff after you've verified neovim works |
NewerOlder