diff --git a/deploy.sh b/deploy.sh index 7e2cb06..1c2486d 100755 --- a/deploy.sh +++ b/deploy.sh @@ -24,6 +24,7 @@ declare -A configs=( declare -a config_directories=( "$HOME/.config/nvim" "$HOME/.config/wezterm" + "$HOME/.config/zsh" ) for dir in ${config_directories[@]}; do diff --git a/zsh/zshrc b/zsh/zshrc index 6cb984f..6d23c3f 100644 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -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 # zmodload zsh/zprof @@ -22,16 +22,21 @@ 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-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 plugins=( fzf - zsh-autosuggestions - # zsh-syntax-highlighting virtualenvwrapper + # zsh-autosuggestions + # zsh-syntax-highlighting ) # Disable the startup update checks