Added 3 zinit plugins

This commit is contained in:
pauljako 2024-08-24 14:55:18 +02:00
parent 7c417fe7d9
commit 71dddabcc9

12
.zshrc
View file

@ -68,6 +68,15 @@ ZINIT_HOME="$HOME/.config/zinit/zinit.git"
# Initialize zinit # Initialize zinit
source "${ZINIT_HOME}/zinit.zsh" 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 # Initialize TheF*ck if it exists
if command -v thefuck &> /dev/null if command -v thefuck &> /dev/null
then then
@ -94,3 +103,6 @@ fi
# #
# Alias la to ls -la # Alias la to ls -la
alias la="ls -la" alias la="ls -la"
#
# Load the zsh completion system
autoload -U compinit && compinit