Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

detect omz regression #657

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions script/ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,6 @@ add_measurement install $INSTALL_DURATION

./script/versions.sh versions.txt

TEST_START=$(date +%s)
"${stdbuf[@]}" ./script/test > >(decorate) 2>&1
TEST_END=$(date +%s)
TEST_DURATION=$((TEST_END - TEST_START))
add_measurement test $TEST_DURATION

source nvim/path.zsh
run_measurement nvim nvim +qall
run_measurement zsh zsh -i -c 'exit'
Expand Down
8 changes: 4 additions & 4 deletions zoxide/load.zsh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Ensure that the jumped-to folder is echoed
export _ZO_ECHO=1

eval "$(zoxide init --cmd j zsh)"
# # Ensure that the jumped-to folder is echoed
# export _ZO_ECHO=1
#
# eval "$(zoxide init --cmd j zsh)"
2 changes: 1 addition & 1 deletion zsh/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ if [ -d "$checkout_path" ]; then
# Older zsh templates did not export ZSH var
export ZSH=$checkout_path
fi
zsh -i -e -c "omz update --unattended"
# zsh -i -e -c "omz update --unattended"
else
../git/install.sh
git clone https://github.com/ohmyzsh/ohmyzsh.git $checkout_path
Expand Down
2 changes: 1 addition & 1 deletion zsh/zshrc.symlink
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ do
done

# load oh-my-zsh (which does compinit)
source $DOTS/zsh/oh-my.zsh.preamble
# source $DOTS/zsh/oh-my.zsh.preamble

# your project folder that we can `c [tab]` to
export PROJECTS=~/Documents/repos/
Expand Down
Loading