22 lines
403 B
Bash
22 lines
403 B
Bash
export ZSH="$HOME/.oh-my-zsh"
|
|
|
|
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
|
|
ZSH_THEME="strug"
|
|
|
|
DISABLE_AUTO_TITLE="true"
|
|
DISABLE_UNTRACKED_FILES_DIRTY="true"
|
|
plugins=(git zsh-autosuggestions)
|
|
source $ZSH/oh-my-zsh.sh
|
|
|
|
EDITOR="hx"
|
|
if [[ -f /run/.toolboxenv ]]; then
|
|
export HOST="toolbox📦"
|
|
fi
|
|
|
|
source "$HOME/.cargo/env"
|
|
|
|
alias :q=exit
|
|
alias cl=clear
|
|
alias rm="rm -i"
|
|
alias shut="shutdown 0"
|
|
|