Uppdate zshrc.

This commit is contained in:
2025-09-07 00:38:05 -07:00
parent 394ac958c1
commit d95796b131
2 changed files with 8 additions and 1 deletions

View File

@@ -1,7 +1,6 @@
""" vim config """ vim config
""" Author: Chun Li """ Author: Chun Li
""" PLUGINS """ PLUGINS
call plug#begin('~/.vim/plugged') call plug#begin('~/.vim/plugged')
if filereadable(expand("~/.vimrc.bundles")) if filereadable(expand("~/.vimrc.bundles"))

View File

@@ -14,7 +14,15 @@ compinit
PROMPT='%F{magenta}%* %F{cyan}%~ %(?.%F{green}.%F{red})%#%f ' PROMPT='%F{magenta}%* %F{cyan}%~ %(?.%F{green}.%F{red})%#%f '
alias ls='ls --color=auto' alias ls='ls --color=auto'
alias vim='nvim'
# Fun tools # Fun tools
alias transcat='queercat -f transgender' alias transcat='queercat -f transgender'
alias bicat='queercat -f bisexual' alias bicat='queercat -f bisexual'
# Install packages locally to prevent interference with packages installed with pacman
PATH=$PATH:~/.npm-global/bin
export GEM_HOME="$(gem env user_gemhome)"
PATH="$PATH:$GEM_HOME/bin"
source <(fzf --zsh)