https://github.com/sayanarijit/zoxide.xplr
zoxide integration for xplr
https://github.com/sayanarijit/zoxide.xplr
Last synced: 7 months ago
JSON representation
zoxide integration for xplr
- Host: GitHub
- URL: https://github.com/sayanarijit/zoxide.xplr
- Owner: sayanarijit
- License: mit
- Created: 2021-06-30T06:39:52.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-01-11T10:10:07.000Z (almost 3 years ago)
- Last Synced: 2025-03-19T06:04:15.362Z (7 months ago)
- Language: Lua
- Homepage: https://xplr.dev
- Size: 7.81 KB
- Stars: 23
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://gifyu.com/image/AclQ)
## Requirements
- [zoxide](https://github.com/ajeetdsouza/zoxide)
## Installation
### Install manually
- Add the following line in `~/.config/xplr/init.lua`
```lua
local home = os.getenv("HOME")
package.path = home
.. "/.config/xplr/plugins/?/init.lua;"
.. home
.. "/.config/xplr/plugins/?.lua;"
.. package.path
```- Clone the plugin
```bash
mkdir -p ~/.config/xplr/pluginsgit clone https://github.com/sayanarijit/zoxide.xplr ~/.config/xplr/plugins/zoxide
```- Require the module in `~/.config/xplr/init.lua`
```lua
require("zoxide").setup()-- Or
require("zoxide").setup{
bin = "zoxide",
mode = "default",
key = "Z",
}-- Type `Z` to spawn zoxide prompt.
```