26 lines
573 B
Lua
26 lines
573 B
Lua
require("aerial").setup(astronvim.user_plugin_opts("plugins.aerial", {
|
|
attach_mode = "global",
|
|
backends = { "lsp", "treesitter", "markdown", "man" },
|
|
layout = {
|
|
min_width = 28,
|
|
},
|
|
show_guides = true,
|
|
filter_kind = false,
|
|
guides = {
|
|
mid_item = "├ ",
|
|
last_item = "└ ",
|
|
nested_top = "│ ",
|
|
whitespace = " ",
|
|
},
|
|
keymaps = {
|
|
["[y"] = "actions.prev",
|
|
["]y"] = "actions.next",
|
|
["[Y"] = "actions.prev_up",
|
|
["]Y"] = "actions.next_up",
|
|
["{"] = false,
|
|
["}"] = false,
|
|
["[["] = false,
|
|
["]]"] = false,
|
|
},
|
|
}))
|