Added 3 zinit plugins
This commit is contained in:
parent
7c417fe7d9
commit
71dddabcc9
1 changed files with 12 additions and 0 deletions
12
.zshrc
12
.zshrc
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue