From 7548d7479f405ccfe556063ac6b2516b31757225 Mon Sep 17 00:00:00 2001 From: Aroy-Art Date: Mon, 20 Jan 2025 09:45:28 +0100 Subject: [PATCH] ZSH Config: Add Fish styling --- Configs/ZSHShell/.zshrc | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/Configs/ZSHShell/.zshrc b/Configs/ZSHShell/.zshrc index d370e91..f1f56ba 100644 --- a/Configs/ZSHShell/.zshrc +++ b/Configs/ZSHShell/.zshrc @@ -111,3 +111,22 @@ source /usr/share/zsh-theme-powerlevel10k/powerlevel10k.zsh-theme # To customize prompt, run `p10k configure` or edit ~/.p10k.zsh. [[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh #################################################################################################################################################### + + +#################################################################################################################################################### +# Plugins section: +#################################################################################################################################################### +# Enable fish style features +################################################################################### +# Use syntax highlighting +source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh + +# Use history substring search +source /usr/share/zsh/plugins/zsh-history-substring-search/zsh-history-substring-search.zsh + +# Use auto-suggestions +source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh + +# Colorize the output of the "ls" shell command via LS_COLORS +. /usr/share/LS_COLORS/dircolors.sh +###################################################################################