diff --git a/CHANGELOGS.md b/CHANGELOGS.md index c43387b..be97835 100644 --- a/CHANGELOGS.md +++ b/CHANGELOGS.md @@ -1,5 +1,8 @@ ## Changelogs +## 26 May 2024 +- Added fzf for zsh (CTRL R to invoke FZF history) + ## 23 May 2024 - added qalculate-gtk to work with rofi-calc. Default keybinds (SUPER ALT C) - added power-profiles-daemon for ROG laptops. Note, I cant add to all since it conflicts with TLP, CPU-Auto-frequency etc. diff --git a/README.md b/README.md index 82a2540..d8c5feb 100644 --- a/README.md +++ b/README.md @@ -114,11 +114,10 @@ https://github.com/JaKooLit/Hyprland-Dots/assets/85185940/50d53755-0f11-45d6-991 #### ✨ Costumize the packages to be installed - inside the install-scripts folder, you can edit 00-hypr-pkgs.sh. Do not edit 00-dependencies.sh unless you know what you are doing. Care though as the Hyprland Dots may not work properly! -- default GTK theme if agreed to be installed is Tokyo night GTK themes (dark and light) + Tokyo night SE icons #### 💫 SDDM and GTK Themes offered - If you opted to install SDDM theme, here's the [`LINK`](https://github.com/JaKooLit/simple-sddm) -- If you opted to install GTK Themes, Icons and Cursor offered are Tokyo Nights. [`LINK`](https://github.com/JaKooLit/GTK-themes-icons) & Bibata Cursor Modern Ice +- If you opted to install GTK Themes, Icons, here's the [`LINK`](https://github.com/JaKooLit/GTK-themes-icons) & Bibata Cursor Modern Ice (assets directory) #### 🔔 NOTICE TO NVIDIA OWNERS ### > [!IMPORTANT] diff --git a/assets/.zshrc b/assets/.zshrc index daa7652..2ccff57 100644 --- a/assets/.zshrc +++ b/assets/.zshrc @@ -19,4 +19,10 @@ 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 dc0a665..864dcd5 100755 --- a/install-scripts/zsh.sh +++ b/install-scripts/zsh.sh @@ -3,7 +3,9 @@ # Zsh and Oh my Zsh + Optional Pokemon ColorScripts# zsh=( -zsh +zsh +zplug +fzf ) ## WARNING: DO NOT EDIT BEYOND THIS LINE IF YOU DON'T KNOW WHAT YOU ARE DOING! ##