.dotfiles/nvim/lua/plugs/arrow.lua
Martin Larsson aa9a887a08 War on rounded corners in Neovim, this introduces corners on more
windows than I want it on thuogh, need to remove borders on Lazy and
Blink for instance
2025-05-30 14:21:22 +02:00

31 lines
767 B
Lua

return {
"otavioschwanck/arrow.nvim",
event = "VeryLazy",
lazy = true,
opts = {
show_icons = true,
leader_key = ",",
global_bookmarks = false,
separate_by_branch = true,
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",
},
window = {
border = "single",
}
}
}