This commit is contained in:
Michael Zhang 2020-03-25 03:19:49 -05:00
commit 45e7936296
Signed by: michael
GPG key ID: BDA47A31A3C8EE6B
2 changed files with 27 additions and 0 deletions

5
README.md Normal file
View file

@ -0,0 +1,5 @@
dotfiles
========
Here be dotfiles.

22
dot_zshrc Normal file
View file

@ -0,0 +1,22 @@
export ZSH="/home/michael/.oh-my-zsh"
ZSH_THEME="ys"
plugins=(git)
source $ZSH/oh-my-zsh.sh
export DOTNET_CLI_TELEMETRY_OPTOUT=1
export RUST_SRC_PATH="$(rustc --print sysroot)/lib/rustlib/src/rust/src"
export EDITOR=nvim
source $HOME/.cargo/env
source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
export PATH="$HOME/.local/scripts:$HOME/.dotnet/tools:$PATH:$HOME/go/bin"
[ -f "${GHCUP_INSTALL_BASE_PREFIX:=$HOME}/.ghcup/env" ] && source "${GHCUP_INSTALL_BASE_PREFIX:=$HOME}/.ghcup/env"
# opam configuration
test -r /home/michael/.opam/opam-init/init.zsh && . /home/michael/.opam/opam-init/init.zsh > /dev/null 2> /dev/null || true
# aliases
alias rm="garbage put"
alias cm="chezmoi"