From e8abd18ac449450b8b6c8b0ce82c262f050c40b1 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Mon, 27 May 2024 05:18:20 +0900 Subject: [PATCH] Added fzf for zsh, clean up readme --- CHANGELOGS.md | 3 +++ README.md | 3 +-- assets/.zshrc | 6 ++++++ install-scripts/zsh.sh | 3 ++- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOGS.md b/CHANGELOGS.md index 131bab9..3358ace 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 9791988..fe7e354 100644 --- a/README.md +++ b/README.md @@ -122,11 +122,10 @@ sudo nano /etc/apt/sources.list #### ✨ 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 ### - by default it is installing the latest and newest nvidia drivers. If you have an older nvidia-gpu (GTX 800 series and older), check out nvidia-debian website [`LINK`](https://wiki.debian.org/NvidiaGraphicsDrivers) and edit nvidia.sh in install-scripts folder to install proper gpu driver diff --git a/assets/.zshrc b/assets/.zshrc index 5f74178..0e8e32c 100644 --- a/assets/.zshrc +++ b/assets/.zshrc @@ -18,4 +18,10 @@ source $ZSH/oh-my-zsh.sh # Project page: https://gitlab.com/phoneybadger/pokemon-colorscripts#on-other-distros-and-macos #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 aeed518..864dcd5 100755 --- a/install-scripts/zsh.sh +++ b/install-scripts/zsh.sh @@ -4,7 +4,8 @@ zsh=( zsh -zplug +zplug +fzf ) ## WARNING: DO NOT EDIT BEYOND THIS LINE IF YOU DON'T KNOW WHAT YOU ARE DOING! ##