added docker config

This commit is contained in:
sherlock 2025-03-09 01:12:02 +05:30
parent e603632476
commit 2aa3d9b36d
2 changed files with 14 additions and 6 deletions

View file

@ -309,21 +309,23 @@ fi
#
# eval "$(zoxide init bash)"
source $(brew --prefix)/share/zsh-autosuggestions/zsh-autosuggestions.zsh
# ZSH Plugin - zsh-autosuggestions
source $(brew --prefix)/share/zsh-autosuggestions/zsh-autosuggestions.zsh
echo "source $(brew --prefix)/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh" >> ${ZDOTDIR:-$HOME}/.zshrc
source /opt/homebrew/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
plugins=(git zsh-autosuggestions zsh-syntax-highlighting you-should-use)
# Adding SQLPlus via Homebrew
export DYLD_LIBRARY_PATH="/opt/homebrew/Cellar/instantclient-arm64-basic/23.3.0.23.09-1:$DYLD_LIBRARY_PATH"
export PATH="/opt/homebrew/Cellar/instantclient-arm64-sqlplus/23.3.0.23.09/bin:$PATH"
source /opt/homebrew/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
alias sqlplus='DYLD_LIBRARY_PATH=$(brew --prefix)/lib sqlplus'
alias sqlplus='DYLD_LIBRARY_PATH=/opt/homebrew/Cellar/instantclient-arm64-basic/23.3.0.23.09-1 sqlplus'
source /opt/homebrew/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
## Adding ZSH Syntax Highlighting support (for commands as you type them)
source /opt/homebrew/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh