From 71dddabcc9f336b095a35d0269b209e97df48017 Mon Sep 17 00:00:00 2001 From: pauljako <126326487+pauljako@users.noreply.github.com> Date: Sat, 24 Aug 2024 14:55:18 +0200 Subject: [PATCH] Added 3 zinit plugins --- .zshrc | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.zshrc b/.zshrc index 467d7f5..d91f9cd 100644 --- a/.zshrc +++ b/.zshrc @@ -68,6 +68,15 @@ ZINIT_HOME="$HOME/.config/zinit/zinit.git" # Initialize zinit source "${ZINIT_HOME}/zinit.zsh" # +# Command Syntax Highlighting +zinit light zsh-users/zsh-syntax-highlighting +# +# Command Completions +zinit light zsh-users/zsh-completions +# +# Inline Command Suggestions based on history +zinit light zsh-users/zsh-autosuggestions +# # Initialize TheF*ck if it exists if command -v thefuck &> /dev/null then @@ -94,3 +103,6 @@ fi # # Alias la to ls -la alias la="ls -la" +# +# Load the zsh completion system +autoload -U compinit && compinit