refactor(zsh): remove oh my zsh
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 1m4s

This commit is contained in:
Price Hiller 2024-05-28 18:08:45 -05:00
parent a388e85676
commit cfecd96017
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB
2 changed files with 0 additions and 45 deletions

View File

@ -13,7 +13,6 @@ init() {
local wkdir="${BASE_ZSH_CONFIG_DIR}/config"
source "${wkdir}/profile/init.zsh"
source "${wkdir}/style/init.zsh"
source "${wkdir}/omz/init.zsh"
source "${wkdir}/plugins/init.zsh"
source "${wkdir}/themes/init.zsh"
}

View File

@ -1,44 +0,0 @@
# This has to break spec because omz will source EVERYTHING inside of the
# omz directory :(
configure() {
export plugins=(
git
zsh-autosuggestions
zsh-completions
zsh-syntax-highlighting
colored-man-pages
pip
extract
fzf-tab
aws
docker
docker-compose
nmap
npm
python
zsh-vi-mode
zsh-kitty
rust
dotnet
)
if [[ "${OSTYPE}" = "darwin"* ]]; then
plugins +=(
macos
)
fi
source "${ZSH}/oh-my-zsh.sh"
}
init() {
local wkdir="${BASE_ZSH_CONFIG_DIR}/config/omz"
export ZSH="${HOME}/.local/share/omz"
export ZSH_CUSTOM="${wkdir}/"
}
init