Skip to content

Instantly share code, notes, and snippets.

View JoshChristie's full-sized avatar

Josh Christie JoshChristie

  • Yum
  • Brisbane, Australia
View GitHub Profile
@JoshChristie
JoshChristie / useful_docker_cmds.txt
Created January 15, 2020 10:19
Useful Docker cmds
cd to_package
# Add optional -v ~/.ssh/:/root/.ssh/
docker run -ti --rm --name=app -v $(pwd):/package ubuntu:xenial /bin/bash
@JoshChristie
JoshChristie / gist:0f610ce2499b3e26d0f417675b095835
Created December 28, 2018 02:00
.zshrc additional things
ZSH_THEME="spaceship"
plugins=(
git
zsh-completions
zsh-autosuggestions
)
export ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=3"
@JoshChristie
JoshChristie / .gitconfig
Last active December 28, 2018 01:58
.gitconfig
[user]
email = joshua.christie@roames.com.au
name = Josh Christie
[push]
default = simple
[pretty]
lg = %C(red)%h%C(reset) %C(green)%ci%C(reset) %s %C(bold blue)-- %an%C(reset)%C(yellow)%d%C(reset)
lge = %C(red)%h%C(reset) %C(green)%ci%C(reset) %s %C(bold blue)-- %an <%ae>%C(reset)%C(yellow)%d%C(reset)
reflg = %C(red)%h%C(reset) %C(green)%ci%C(reset) %s %C(bold blue)-- %an%C(reset) %C(yellow)(%gd)%C(reset)
[alias]