https://github.com/thunder-coding/zincoxide
NeoVim Zoxide integration
https://github.com/thunder-coding/zincoxide
Last synced: about 1 year ago
JSON representation
NeoVim Zoxide integration
- Host: GitHub
- URL: https://github.com/thunder-coding/zincoxide
- Owner: thunder-coding
- License: apache-2.0
- Created: 2024-04-18T11:24:15.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-02T04:21:19.000Z (over 1 year ago)
- Last Synced: 2025-03-18T09:12:56.852Z (about 1 year ago)
- Language: Lua
- Homepage:
- Size: 15.7 MB
- Stars: 10
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ZincOxide (ZnO)
Supercharge your neovim cd command with new your existing shell's `zoxide`.

## Installation (lazy.nvim)
```lua
{
-- You can also use the codeberg mirror if you want to use the plugin without relying on GitHub
-- "https://codeberg.org/CodingThunder/zincoxide.git" -- for HTTPS
-- "git@codeberg.org:CodingThunder/zincoxide.git" -- for SSH
-- NOTE: the username on both github and codeberg are different
"thunder-coding/zincoxide",
opts = {
-- name of zoxide binary in your "$PATH" or path to the binary
-- the command is executed using vim.fn.system()
-- eg. "zoxide" or "/usr/bin/zoxide"
zincoxide_cmd = "zoxide",
-- Kinda experimental as of now
complete = true,
-- Available options { "tabs", "window", "global" }
behaviour = "tabs",
},
cmd = { "Z", "Zg", "Zt", "Zw" },
}
```