This commit is contained in:
Errol Sancaktar 2024-06-14 09:59:54 -06:00
parent ff17c17e23
commit e1c9e2e477
4 changed files with 21 additions and 2 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
neovim/.config/nvim/lazyvim.jso
neovim/.config/nvim/lazy-lock.json

3
.gitmodules vendored Normal file
View File

@ -0,0 +1,3 @@
[submodule "ohmyzsh/.oh-my-zsh"]
path = ohmyzsh/.oh-my-zsh
url = https://github.com/ohmyzsh/ohmyzsh.git

@ -1 +1 @@
Subproject commit 8908e6d7207223d876b9a74f0be0f0ebb01b361f
Subproject commit 0c9b42a863778d67aee22bbd43f296110fe1f047

View File

@ -1,2 +1,16 @@
# Set PATH, MANPATH, etc., for Homebrew.
# eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
if [[ "${uname}" != "Darwin" ]]
then
eval "$(/opt/homebrew/bin/brew shellenv)"
if [[ ! -d "/Users/errol/.oh-my-zsh/custom/plugins/autoupdate" ]]; then
git clone https://github.com/TamCore/autoupdate-oh-my-zsh-plugins ${ZSH_CUSTOM:-${ZSH:-~/.oh-my-zsh}/custom}/plugins/autoupdate
fi
if [[ ! -d "/Users/errol/.oh-my-zsh/custom/plugins/powerlevel10k" ]]; then
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k
fi
if [[ ! -d "/Users/errol/.oh-my-zsh/custom/plugins/zsh-completions" ]]; then
git clone https://github.com/zsh-users/zsh-completions ${ZSH_CUSTOM:-${ZSH:-~/.oh-my-zsh}/custom}/plugins/zsh-completions
fi
else
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
fi