summaryrefslogtreecommitdiffstats
path: root/zsh/oh-my-zsh/plugins/zoxide
diff options
context:
space:
mode:
authorLibravatarLibravatar Biswakalyan Bhuyan <biswa@surgot.in> 2024-03-25 16:43:09 +0530
committerLibravatarLibravatar Biswakalyan Bhuyan <biswa@surgot.in> 2024-03-25 16:43:09 +0530
commita62114c91f2070c8c8453d117f3d81dc113e41ff (patch)
treef266e87af29a08c01f82bc32dd7d463d8ec4441a /zsh/oh-my-zsh/plugins/zoxide
parentaf120ab348f2e1a5a39dec035ed9dcf84189a64e (diff)
downloaddotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.gz
dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.bz2
dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.zip
dotfile update
Diffstat (limited to 'zsh/oh-my-zsh/plugins/zoxide')
-rw-r--r--zsh/oh-my-zsh/plugins/zoxide/README.md14
-rw-r--r--zsh/oh-my-zsh/plugins/zoxide/zoxide.plugin.zsh5
2 files changed, 0 insertions, 19 deletions
diff --git a/zsh/oh-my-zsh/plugins/zoxide/README.md b/zsh/oh-my-zsh/plugins/zoxide/README.md
deleted file mode 100644
index f326eff..0000000
--- a/zsh/oh-my-zsh/plugins/zoxide/README.md
+++ /dev/null
@@ -1,14 +0,0 @@
-# zoxide plugin
-
-Initializes [zoxide](https://github.com/ajeetdsouza/zoxide), a smarter cd
-command for your terminal.
-
-![Tutorial](https://raw.githubusercontent.com/ajeetdsouza/zoxide/97dc08347d9dbf5b5a4516b79e0ac27366b962ce/contrib/tutorial.webp)
-
-To use it, add `zoxide` to the plugins array in your `.zshrc` file:
-
-```zsh
-plugins=(... zoxide)
-```
-
-**Note:** you have to [install zoxide](https://github.com/ajeetdsouza/zoxide#step-1-install-zoxide) first.
diff --git a/zsh/oh-my-zsh/plugins/zoxide/zoxide.plugin.zsh b/zsh/oh-my-zsh/plugins/zoxide/zoxide.plugin.zsh
deleted file mode 100644
index e5658b8..0000000
--- a/zsh/oh-my-zsh/plugins/zoxide/zoxide.plugin.zsh
+++ /dev/null
@@ -1,5 +0,0 @@
-if (( $+commands[zoxide] )); then
- eval "$(zoxide init zsh)"
-else
- echo '[oh-my-zsh] zoxide not found, please install it from https://github.com/ajeetdsouza/zoxide'
-fi