--- @type LazyPluginSpec return { "mikavilpas/yazi.nvim", event = "VeryLazy", config = function() require("yazi").setup({ open_for_directories = false, keymaps = { show_help = "", }, }) vim.keymap.set("n", "fy", "Yazi", { silent = true, desc = "Open yazi at the current file" }) vim.keymap.set( "n", "fc", "Yazi cwd", { silent = true, desc = "Open the file manager in nvim's working directory" } ) end, }