From d95796b1317cdb24889523669c5a4c9799d71da6 Mon Sep 17 00:00:00 2001 From: Chun Li Date: Sun, 7 Sep 2025 00:38:05 -0700 Subject: [PATCH] Uppdate zshrc. --- vim/dot-vimrc | 1 - zsh/dot-zshrc | 8 ++++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/vim/dot-vimrc b/vim/dot-vimrc index 391d28e..f18b273 100644 --- a/vim/dot-vimrc +++ b/vim/dot-vimrc @@ -1,7 +1,6 @@ """ vim config """ Author: Chun Li - """ PLUGINS call plug#begin('~/.vim/plugged') if filereadable(expand("~/.vimrc.bundles")) diff --git a/zsh/dot-zshrc b/zsh/dot-zshrc index 2dfbc0b..cb5f7c1 100644 --- a/zsh/dot-zshrc +++ b/zsh/dot-zshrc @@ -14,7 +14,15 @@ compinit PROMPT='%F{magenta}%* %F{cyan}%~ %(?.%F{green}.%F{red})%#%f ' alias ls='ls --color=auto' +alias vim='nvim' # Fun tools alias transcat='queercat -f transgender' 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)