Skip to content

Commit c0e3e08

Browse files
committed
Remove zoxide
1 parent 8ac4e67 commit c0e3e08

File tree

3 files changed

+0
-12
lines changed

3 files changed

+0
-12
lines changed

Dockerfile

-3
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,6 @@ RUN ./install.sh -t build
6666
RUN mkdir -p ~/.local/bin
6767
RUN ln -s $(which fdfind) ~/.local/bin/fd
6868

69-
# Install zoxide. (This needs to be done for the local, non-root user.)
70-
RUN curl -sSf https://raw.githubusercontent.com/ajeetdsouza/zoxide/main/install.sh | bash -u --
71-
7269
# Needs to be fully qualified
7370
ENV NVM_DIR /home/${USER}/.nvm
7471
ENV NODE_VERSION 20.13.1

home/zshrc

-5
Original file line numberDiff line numberDiff line change
@@ -295,11 +295,6 @@ if _has fzf; then
295295
source "${fzf_path}/shell/completion.zsh"
296296
fi
297297

298-
if _has zoxide; then
299-
export ___ZOXIDE_DETECTED=true
300-
eval "$(zoxide init --cmd cd zsh)"
301-
fi
302-
303298
alias find="fd"
304299
alias grep="rg"
305300

scripts/ubuntu.sh

-4
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,6 @@ if ! _has fd; then
5151
ln -s "$(which fdfind)" ~/.local/bin/fd
5252
fi
5353

54-
if ! _has zoxide; then
55-
curl -sS https://raw.githubusercontent.com/ajeetdsouza/zoxide/main/install.sh | bash
56-
fi
57-
5854
if ! _has lazygit; then
5955
LAZYGIT_VERSION=$(curl -s "https://api.github.com/repos/jesseduffield/lazygit/releases/latest" | grep -Po '"tag_name": "v\K[^"]*')
6056
curl -Lo lazygit.tar.gz "https://github.com/jesseduffield/lazygit/releases/latest/download/lazygit_${LAZYGIT_VERSION}_Linux_x86_64.tar.gz"

0 commit comments

Comments
 (0)