From 03d2a54bc984320ce5a534cc00e0e4189f6208f4 Mon Sep 17 00:00:00 2001 From: CronyAkatsuki Date: Sun, 22 Oct 2023 11:33:38 +0200 Subject: [PATCH] Setup zoxide, fuck regular cd --- .config/zsh/.zshrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc index 9e966f3..d9f1519 100755 --- a/.config/zsh/.zshrc +++ b/.config/zsh/.zshrc @@ -21,6 +21,9 @@ plug "zdharma-continuum/fast-syntax-highlighting" plug "zsh-users/zsh-history-substring-search" plug "MichaelAquilina/zsh-you-should-use" +# Startup zoxide +eval "$(zoxide init zsh)" + # Substring search settings export HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND="bg=blue,fg=black,bold" export HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_NOT_FOUND='bg=red,fg=black,bold'