Skip to content

Instantly share code, notes, and snippets.

@shikanime
Last active January 12, 2020 17:18
Show Gist options
  • Save shikanime/f1e09383b5e36fa68739fbe4c34eb02f to your computer and use it in GitHub Desktop.
Save shikanime/f1e09383b5e36fa68739fbe4c34eb02f to your computer and use it in GitHub Desktop.
# Languages
export LC_ALL="en_US.UTF-8"
export LANG="en_US.UTF-8"
# Brew
export PATH="/home/linuxbrew/.linuxbrew/bin:$PATH"
export MANPATH="/home/linuxbrew/.linuxbrew/share/man:$MANPATH"
export INFOPATH="/home/linuxbrew/.linuxbrew/share/info:$INFOPATH"
# Windows
export WINHOME="/mnt/c/Users/$USER"
# Go
export GOPATH="$WINHOME/Code"
export PATH="$WINHOME/Code/bin:$PATH"
# Anaconda
export PATH="$HOME/.anaconda3/bin:$PATH"
# Rust cargo
export PATH="$HOME/.cargo/bin:$PATH"
# Erlang history
export ERL_AFLAGS="-kernel shell_history enabled"
# Elixir scripts
export PATH="$HOME/.mix/escripts:$PATH"
# oh-my-zsh.
export ZSH="$HOME/.oh-my-zsh"
source $ZSH/oh-my-zsh.sh
# Starship shell
eval $(starship init zsh)
# Kubernetes autocomplete
source <(kubectl completion zsh)
# OPAM configuration
test -r /home/devas/.opam/opam-init/init.zsh && . /home/devas/.opam/opam-init/init.zsh >/dev/null 2>/dev/null || true
# ASDF
source $HOME/.asdf/asdf.sh
source $HOME/.asdf/completions/asdf.bash
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment