.dotfiles/home/.config/nvim/lua/plugs/arrow.lua

25 lines
630 B
Lua

return {
"otavioschwanck/arrow.nvim",
opts = {
show_icons = true,
leader_key = ",",
global_bookmarks = false,
custom_actions = {
open = function(filename, _)
vim.cmd(string.format(":drop %s", filename))
end,
},
mappings = {
edit = "e",
delete_mode = "d",
clear_all_items = "C",
toggle = "s",
open_vertical = "v",
open_horizontal = "h",
quit = "q",
remove = "x",
next_item = "n",
prev_item = "p",
}
}
}