Update config files to use stow

This commit is contained in:
2026-03-16 22:00:33 -07:00
parent fd65dc3aad
commit 08f4f3d114
26 changed files with 9 additions and 14 deletions

32
zsh/.zshrc Normal file
View File

@@ -0,0 +1,32 @@
HISTFILE=~/.histfile
HISTSIZE=5000
SAVEHIST=10000
bindkey -e # emacs bindings
# The following lines were added by compinstall
zstyle :compinstall filename '/home/chun/.zshrc'
autoload -Uz compinit
compinit
# End of lines added by compinstall
# Simple prompt
PROMPT='%F{magenta}%* %F{cyan}%~ %(?.%F{green}.%F{red})%#%f '
# PATH configuration
PATH=$PATH:~/.npm-global/bin
# Install packages locally to prevent interference with packages installed with pacman
export GEM_HOME="$(gem env user_gemhome)"
PATH="$PATH:$GEM_HOME/bin"
# Useful aliases
alias ls='ls --color=auto'
alias vim='nvim'
alias open='xdg-open'
# Fun tools
alias transcat='queercat -f transgender'
alias bicat='queercat -f bisexual'
source <(fzf --zsh)
export PATH="$HOME/.local/bin:$PATH"