fix: Removing npmrc (just not used), updating zshrc to remove

zsh-syntax-highlighting references and disabling keychain for now,
adding a TODO to the deploy script for wezterm local config
This commit is contained in:
2026-03-31 12:05:34 -05:00
parent 3ea9943040
commit 095cacf392
3 changed files with 11 additions and 19 deletions

View File

@@ -22,21 +22,15 @@ fi
export ZSH="$HOME/.oh-my-zsh"
# Install the zsh-autosuggestions plugin if it doesn't exist
# if [ ! -d ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions ]
# then
# git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
# fi
# if [ ! -d ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting ]
# then
# git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
# fi
if [ ! -d ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions ]
then
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
fi
plugins=(
fzf
virtualenvwrapper
# zsh-autosuggestions
# zsh-syntax-highlighting
zsh-autosuggestions
)
# Disable the startup update checks
@@ -69,10 +63,10 @@ zstyle ':completion:*:descriptions' format '%U%B%d%b%u'
zstyle ':completion:*:warnings' format '%BNo matches for: %d%b'
# Autoload keychain for ssh-agent handling if it is installed
if command -v keychain &> /dev/null
then
eval $(keychain --eval --quiet --nogui --noask)
fi
# if command -v keychain &> /dev/null
# then
# eval $(keychain --eval --quiet --nogui --noask)
# fi
# TODO: Replace above with GPG agent
# GPG Agent handling of ssh key authorization and unlocks
@@ -80,7 +74,6 @@ fi
# Inclusion of files to extend the configuration
# From a theme to local specific changes, and grouping functions/aliases/exports
include_files=(
# "$HOME/.config/zsh/fb_theme.zsh"
"$HOME/.config/zsh/zsh_local.zsh"
"$HOME/.config/zsh/zsh_aliases.zsh"
"$HOME/.config/zsh/zsh_exports.zsh"
@@ -90,6 +83,7 @@ include_files=(
for file in $include_files; do
if [ ! -f $file ]
then
# Create files even if they aren't overriden in the environment
touch $file
fi