Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Oh My Zsh
Commits
36cc94f3
Unverified
Commit
36cc94f3
authored
Jun 13, 2021
by
Ajeet D'Souza
Committed by
GitHub
Jun 13, 2021
Browse files
feat(zoxide): add new plugin for zoxide (a smarter cd CLI tool) (#9950)
parent
3ea66642
Changes
3
Hide whitespace changes
Inline
Side-by-side
.github/CODEOWNERS
View file @
36cc94f3
...
...
@@ -7,3 +7,4 @@ plugins/gitfast/ @felipec
plugins/sdk/ @rgoldberg
plugins/universalarchive/ @Konfekt
plugins/wp-cli/ @joshmedeski
plugins/zoxide/ @ajeetdsouza
plugins/zoxide/README.md
0 → 100644
View file @
36cc94f3
# 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.
plugins/zoxide/zoxide.plugin.zsh
0 → 100644
View file @
36cc94f3
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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment