From 8ea860088489b281a512a8d44e510733cbfc3ba4 Mon Sep 17 00:00:00 2001 From: paoda Date: Thu, 18 Jun 2020 01:01:06 -0500 Subject: [PATCH] Add personal aliases and environment variables --- paoda.zsh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 paoda.zsh diff --git a/paoda.zsh b/paoda.zsh new file mode 100644 index 0000000..09188b3 --- /dev/null +++ b/paoda.zsh @@ -0,0 +1,17 @@ +# Make ZSH behave like vim +bindkey -v + +# Re-enable reverse-i-search +# bindkey '^R' history-incremental-search-backward + +# Rust Exports +export CARGO_HOME=~/.local/share/cargo +export RUSTUP_HOME=~/.config/rustup + +# Aliases +alias yay="yay --aur" +alias ls="exa" +alias ll="exa -albh" +alias cat="bat" +alias vim="nvim" +alias dotfile='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME'