diff options
author | Celeste <colean@colean.cc> | 2022-02-21 20:56:13 +0000 |
---|---|---|
committer | Celeste <colean@colean.cc> | 2022-02-21 20:56:13 +0000 |
commit | 1d2543518a17a432f923f31adbbe1a5efee15a20 (patch) | |
tree | 51a2b432ea2e2585d9dc245f7acf190f09ede366 |
Add zsh files
-rw-r--r-- | .zsh_aliases | 8 | ||||
-rw-r--r-- | .zshrc | 30 |
2 files changed, 38 insertions, 0 deletions
diff --git a/.zsh_aliases b/.zsh_aliases new file mode 100644 index 0000000..9c1c725 --- /dev/null +++ b/.zsh_aliases @@ -0,0 +1,8 @@ +alias zshrc="nano ~/.zshrc" +alias zshals="nano ~/.zsh_aliases" +alias rcupd="source ~/.zshrc" +alias unpatch="patch -R" +alias xbs="ruby xbs.rb" +alias lc="lucky_commit" +alias exifstrip="exiftool -all=" +alias config="git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME" @@ -0,0 +1,30 @@ +export ZSH="$HOME/.oh-my-zsh" + +# ZSH_THEME="duellj" +ZSH_THEME="fishy" + +zstyle ':omz:update' mode reminder # just remind me to update when it's time + +zstyle ':omz:update' frequency 7 + +# Uncomment the following line if pasting URLs and other text is messed up. +# DISABLE_MAGIC_FUNCTIONS="true" + +ENABLE_CORRECTION="true" +COMPLETION_WAITING_DOTS="true" +HIST_STAMPS="dd/mm/yyyy" + +plugins=(git) +source $ZSH/oh-my-zsh.sh + +# User configuration + +export LANG=en_GB.UTF-8 +export EDITOR='nano' +export PATH=$PATH:$HOME/bin/:$HOME/.cargo/bin:$HOME/.local/bin:$VITASDK/bin +export GPG_TTY=$(tty) +export VITASDK=/usr/local/vitasdk +source ~/.zsh_aliases + + +. /home/crow/torch/install/bin/torch-activate |