From 9972bc4354e0ab3b0e427275663abffb2fd35f73 Mon Sep 17 00:00:00 2001 From: Anton Novojilov Date: Tue, 30 Apr 2024 11:17:36 +0300 Subject: [PATCH] Remove git plugin usage + Enable ohmyzsh at the biginning --- .zshrc | 10 +++++----- install.sh | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.zshrc b/.zshrc index c53c6c0..8a22f19 100644 --- a/.zshrc +++ b/.zshrc @@ -13,8 +13,8 @@ export GPG_TTY=$(tty) # Set default theme to KAOS ZSH_THEME="kaos" -# Enable git plugin -plugins=(git) +# Create array with plugins +plugins=() # Enable fzf plugin if fzf is installed if [[ -d "$HOME/.fzf" ]] ; then @@ -25,6 +25,9 @@ fi # Disable automatic oh-my-zsh update zstyle ':omz:update' mode disabled +# Enable oh-my-zsh +source $ZSH/oh-my-zsh.sh + ################################################################################ HISTFILE="$HOME/.zsh_history" @@ -474,6 +477,3 @@ if [[ -f $HOME/.zshrc.local ]] ; then fi ################################################################################ - -# Enable oh-my-zsh -source $ZSH/oh-my-zsh.sh diff --git a/install.sh b/install.sh index 560804a..d20f60a 100755 --- a/install.sh +++ b/install.sh @@ -7,7 +7,7 @@ set -e ################################################################################ -VERSION="2.4.3" +VERSION="2.4.4" ################################################################################