start new:
tmux
start new with session name:
tmux new -s myname
function g { | |
$newArgs=$args[1..($args.Length-1)] | |
if ($args[0] -eq "ci") { | |
git commit $newArgs | |
} elseif ($args[0] -eq "hof") { | |
git shortlog -n -s --no-merges | |
} elseif ($args[0] -eq "cic") { | |
git commit --amend | |
} elseif ($args[0] -eq "snake") { | |
git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(cyan)<%an>%Creset' --abbrev-commit --date=relative |
Import-Module PSReadLine | |
Set-PSReadlineKeyHandler -Key Tab -Function Complete | |
Set-PSReadlineKeyHandler -Key UpArrow -Function HistorySearchBackward | |
Set-PSReadlineKeyHandler -Key DownArrow -Function HistorySearchForward | |
#region Smart Insert/Delete | |
# The next four key handlers are designed to make entering matched quotes | |
# parens, and braces a nicer experience. I'd like to include functions |
# User for local dev | |
FROM app/base | |
RUN npm install -g orion-cli | |
# This forces package-catalog update. Should speed up further runs | |
RUN meteor show meteor-platform |