Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
oh-my-zsh
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
github
oh-my-zsh
Commits
36cc94f3
Unverified
Commit
36cc94f3
authored
Jun 13, 2021
by
Ajeet D'Souza
Committed by
GitHub
Jun 13, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(zoxide): add new plugin for zoxide (a smarter cd CLI tool) (#9950)
parent
3ea66642
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
0 deletions
+20
-0
CODEOWNERS
.github/CODEOWNERS
+1
-0
README.md
plugins/zoxide/README.md
+14
-0
zoxide.plugin.zsh
plugins/zoxide/zoxide.plugin.zsh
+5
-0
No files found.
.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.

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