test: Trying out removing the zsh suggestions and syntax highlighting

for now.
This commit is contained in:
2026-03-30 07:31:12 -05:00
parent cc86b9d1bd
commit 3ea9943040
2 changed files with 13 additions and 7 deletions

View File

@@ -24,6 +24,7 @@ declare -A configs=(
declare -a config_directories=( declare -a config_directories=(
"$HOME/.config/nvim" "$HOME/.config/nvim"
"$HOME/.config/wezterm" "$HOME/.config/wezterm"
"$HOME/.config/zsh"
) )
for dir in ${config_directories[@]}; do for dir in ${config_directories[@]}; do

View File

@@ -1,4 +1,4 @@
# call `zprof` to profile all calls in the current shell # Call `zprof` to profile all calls in the current shell
# Uncomment here and at the bottom of the file, then fully reopen a terminal # Uncomment here and at the bottom of the file, then fully reopen a terminal
# zmodload zsh/zprof # zmodload zsh/zprof
@@ -22,16 +22,21 @@ fi
export ZSH="$HOME/.oh-my-zsh" export ZSH="$HOME/.oh-my-zsh"
# Install the zsh-autosuggestions plugin if it doesn't exist # Install the zsh-autosuggestions plugin if it doesn't exist
if [ ! -d ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions ] # if [ ! -d ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions ]
then # then
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions # git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
fi # 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
plugins=( plugins=(
fzf fzf
zsh-autosuggestions
# zsh-syntax-highlighting
virtualenvwrapper virtualenvwrapper
# zsh-autosuggestions
# zsh-syntax-highlighting
) )
# Disable the startup update checks # Disable the startup update checks