This file contains 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
var token = '<insert token>'; | |
var owner = '<insert owner>'; | |
var repo = '<insert repo>'; | |
var newLabels = [ | |
{color: 'e10c02', name: 'Don\'t merge'}, | |
{color: '3ad5e0', name: 'Passed QA'}, | |
{color: '207de5', name: 'Passed review'}, | |
{color: '02e10c', name: 'Waiting for branch'}, | |
{color: 'eb6420', name: 'Waiting for QA'}, |
This file contains 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
" static-import.vim - Add static imports | |
" Maintainer: Matthew Franglen | |
" Version: 0.0.1 | |
if exists('g:loaded_static_import') || &compatible | |
finish | |
endif | |
let g:loaded_static_import = 1 | |
if ! exists('g:static_import_search_dir') |
This file contains 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
(defmacro ☺ [expression] (println expression)) | |
(☺ "I'm OG!") |
This file contains 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
" Guard against loading this twice. This does mean you cannot do: | |
" source $MYVIMRC | |
" to pick up changes, but that isn't usually what you want anyway (it does not | |
" clear existing settings that are no longer being set). | |
if ( exists('g:loaded_vimrc') && g:loaded_vimrc ) | |
finish | |
endif | |
let g:loaded_vimrc = 1 | |
function s:Main() |