Add comments to zsh scripts

This commit is contained in:
George Rawlinson 2017-03-30 15:47:27 +13:00
parent af00877af0
commit 3041e860e9
6 changed files with 10 additions and 0 deletions

View File

@ -1 +1,2 @@
# Prefer this over adding user to docker group
alias docker='sudo docker'

View File

@ -1,2 +1,5 @@
# Export $GOPATH
export GOPATH=$HOME/go
# Add Go binary directory to $PATH
export PATH="$PATH:$GOPATH/bin"

View File

@ -0,0 +1,2 @@
# Add pip2/3 binary directory to $PATH
export PATH="$HOME/.local/bin:$PATH"

View File

@ -1 +1,2 @@
# Add rubygem binary directory to $PATH
export PATH="$PATH:$(ruby -rubygems -e "puts Gem.user_dir")/bin"

View File

@ -1,3 +1,5 @@
# Export rust-src path for Linux
export RUST_SRC_PATH=~/.multirust/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/src
# Add cargo binary directory to $PATH
export PATH="$PATH:$HOME/.cargo/bin"

View File

@ -1 +1,2 @@
# Force Steam to close to tray instead of remaining open
export STEAM_FRAME_FORCE_CLOSE=1