summaryrefslogtreecommitdiff
path: root/pkgs/custom-neovim/config/lua/plugins/zoxide.lua
blob: 433313e4ee5bbd51d6f4df4ba8ffd4e8f30542ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
return {
  "zoxide.vim",
  lazy = true,
  cmd = {
    "Z",
    "Lz",
    "Tz",
    "Zi",
    "Lzi",
    "Tzi",
  },
  before = function ()
    vim.g.zoxide_use_select = 1
  end
}