.s/.zshrc
2022-10-25 22:13:43 -06:00

53 lines
1.3 KiB
Bash

PATH=$PATH:$HOME/scripts:/usr/local/i386elfgcc/bin/:$HOME/.local/bin:/usr/local/opt/binutils/bin:/usr/local/opt/gnu-tar/libexec/gnubin:/usr/local/opt/grep/libexec/gnubin:/usr/local/opt/findutils/libexec/gnubin:/usr/local/opt/coreutils/libexec/gnubin:$HOME/.elixir-ls/release:$HOME/.rowswell/bin
# Print a random ascii arts from ~/ascii-arts
if [ -d "$HOME/ascii-arts" ]
then
echo
echo "======="
logo="$(find $HOME/ascii-arts/* | shuf -n1)"
printf "$(echo $logo | grep -o "[0-9a-zA-Z+\-\.]*$")\n"
echo "======="
printf "$(cat $logo)\n\n"
fi
alias ..="cd .."
alias gc="git checkout"
alias gcm="git commit -S -m"
alias gb="git branch"
alias gbm="git branch -m"
alias ga="git add"
alias gaa="git add ."
alias gpl="git pull"
alias gps="git push"
alias gm="git merge"
alias gss="git status"
alias gsh="git stash"
alias gl="git log"
alias sbcl="rlwrap sbcl"
# Muscle memory is killing me man
alias vim="nvim"
alias startx="sway"
export TERM=xterm-256color
# Alt+b stops at forwardslashes
backward-kill-dir () {
local WORDCHARS=${WORDCHARS/\/}
zle backward-kill-word
zle -f kill
}
zle -N backward-kill-dir
bindkey '^[^?' backward-kill-dir
# ZSH programs
source ~/zsh-stuff/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
source ~/zsh-stuff/spaceship-prompt/spaceship.zsh
# History
HISTFILE=~/.zsh_history
HISTSIZE=10000
SAVEHIST=10000
setopt appendhistory