From 0e6ce2a974c1203ae226ecb781ca1611c282a8ca Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Tue, 4 Jun 2024 01:12:21 +0900 Subject: [PATCH] removed fzf (headache) --- assets/.zshrc | 7 ------- install-scripts/zsh.sh | 17 ----------------- 2 files changed, 24 deletions(-) diff --git a/assets/.zshrc b/assets/.zshrc index 2ccff57..5f74178 100644 --- a/assets/.zshrc +++ b/assets/.zshrc @@ -19,10 +19,3 @@ source $ZSH/oh-my-zsh.sh #pokemon-colorscripts --no-title -s -r -# Set-up FZF key bindings (CTRL R for fuzzy history finder) -source <(fzf --zsh) - -HISTFILE=~/.zsh_history -HISTSIZE=10000 -SAVEHIST=10000 -setopt appendhistory diff --git a/install-scripts/zsh.sh b/install-scripts/zsh.sh index 4a743f8..c0b73ad 100755 --- a/install-scripts/zsh.sh +++ b/install-scripts/zsh.sh @@ -38,23 +38,6 @@ done printf "\n" -printf "${NOTE} Installing fzf from source...${RESET}\n" -if git clone --depth 1 https://github.com/junegunn/fzf.git; then - cd fzf || exit 1 - if ./install --bin 2>&1 | tee -a "$MLOG" ; then - printf "${OK} fzf installed successfully.\n" 2>&1 | tee -a "$MLOG" - else - echo -e "${ERROR} Installation failed for fzf." 2>&1 | tee -a "$MLOG" - fi - #moving the addional logs to Install-Logs directory - mv $MLOG ../Install-Logs/ || true - cd .. -else - echo -e "${ERROR} Download failed for fzf." 2>&1 | tee -a "$LOG" -fi - -printf "\n" - ## Optional Pokemon color scripts while true; do read -p "${CAT} Do you want to install Pokemon color scripts? (y/n): " choice