return { "mikavilpas/yazi.nvim", event = "VeryLazy", dependencies = { { "nvim-lua/plenary.nvim", lazy = true }, }, -- 👇 if you use `open_for_directories=true`, this is recommended init = function() -- More details: https://github.com/mikavilpas/yazi.nvim/issues/802 -- vim.g.loaded_netrw = 1 vim.g.loaded_netrwPlugin = 1 end, keys = { { "e", "Yazi", desc = "Open yazi at the current file", }, -- { -- -- Open in the current working directory -- "E", -- "Yazi cwd", -- desc = "Open the file manager in nvim's working directory", -- }, }, opts = { -- if you want to open yazi instead of netrw, see below for more info open_for_directories = true, open_multiple_tabs = true, floating_window_scaling_factor = 1, keymaps = { show_help = '', open_file_in_vertical_split = '', open_file_in_horizontal_split = '', open_file_in_tab = '', grep_in_directory = '', cycle_open_buffers = '', copy_relative_path_to_selected_files = '', send_to_quickfix_list = '', change_working_directory = "", }, }, }