Add comments to zsh scripts
This commit is contained in:
parent
af00877af0
commit
3041e860e9
6 changed files with 10 additions and 0 deletions
|
@ -1 +1,2 @@
|
||||||
|
# Prefer this over adding user to docker group
|
||||||
alias docker='sudo docker'
|
alias docker='sudo docker'
|
||||||
|
|
|
@ -1,2 +1,5 @@
|
||||||
|
# Export $GOPATH
|
||||||
export GOPATH=$HOME/go
|
export GOPATH=$HOME/go
|
||||||
|
|
||||||
|
# Add Go binary directory to $PATH
|
||||||
export PATH="$PATH:$GOPATH/bin"
|
export PATH="$PATH:$GOPATH/bin"
|
||||||
|
|
2
zsh/.oh-my-zsh/custom/python.zsh
Normal file
2
zsh/.oh-my-zsh/custom/python.zsh
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
# Add pip2/3 binary directory to $PATH
|
||||||
|
export PATH="$HOME/.local/bin:$PATH"
|
|
@ -1 +1,2 @@
|
||||||
|
# Add rubygem binary directory to $PATH
|
||||||
export PATH="$PATH:$(ruby -rubygems -e "puts Gem.user_dir")/bin"
|
export PATH="$PATH:$(ruby -rubygems -e "puts Gem.user_dir")/bin"
|
||||||
|
|
|
@ -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
|
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"
|
export PATH="$PATH:$HOME/.cargo/bin"
|
||||||
|
|
|
@ -1 +1,2 @@
|
||||||
|
# Force Steam to close to tray instead of remaining open
|
||||||
export STEAM_FRAME_FORCE_CLOSE=1
|
export STEAM_FRAME_FORCE_CLOSE=1
|
||||||
|
|
Loading…
Reference in a new issue