How to open yazi at a specific directory? #643
-
I am a kickstart nvim user, I use it because it was I saw people recommend for newbies like me, that means I often move to my nvim config directory ( So far I got this working, but it changes the working directory: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi, this is possible by using the lua api. Maybe something like: vim.keymap.set("n", "<leader>yl", function ()
require("yazi").yazi({}, "/my/path")
end) |
Beta Was this translation helpful? Give feedback.
Hi, this is possible by using the lua api. Maybe something like: