Go to file
2024-09-07 13:32:09 -05:00
lua Initial Commit 2024-09-07 13:32:09 -05:00
tests Initial Commit 2024-09-07 13:32:09 -05:00
.editorconfig Initial Commit 2024-09-07 13:32:09 -05:00
.gitignore Initial Commit 2024-09-07 13:32:09 -05:00
.stylua.toml Initial Commit 2024-09-07 13:32:09 -05:00
LICENSE Initial Commit 2024-09-07 13:32:09 -05:00
Makefile Initial Commit 2024-09-07 13:32:09 -05:00
README.md Initial Commit 2024-09-07 13:32:09 -05:00

Z.nvim

A simple wrapper around the z shell program.

Confirmed to work with the following implementations:

Open an issue/PR if a z implementation works/doesn't work 🙂.

Installation/Setup

  • lazy.nvim:

    {
      "PriceHiller/z.nvim",
      config = true,
      cmd = { "Z" }
    }
    

Configuration

The default configuration is provided below:

require("z").setup({
  z_cmd = "z",
  use_dir_changed = true
})

Usage

z.nvim provides a single user command: Z. Type Z and a commonly visited directory to change the current directory to it.

Just like using z in the command line.