2023-01-25 18:36:39 +00:00
|
|
|
local aerial = require('aerial')
|
|
|
|
aerial.setup {
|
2023-01-31 17:01:37 +00:00
|
|
|
backends = { "lsp", "treesitter", "markdown", "man" },
|
2022-11-30 14:46:27 +00:00
|
|
|
layout = {
|
2023-01-31 17:01:37 +00:00
|
|
|
default_direction = "float",
|
2022-11-30 14:46:27 +00:00
|
|
|
},
|
2023-01-31 09:06:01 +00:00
|
|
|
manage_folds = true,
|
2023-01-31 17:01:37 +00:00
|
|
|
close_on_select = true,
|
2023-01-25 18:36:39 +00:00
|
|
|
show_guides = true,
|
2023-01-31 17:01:37 +00:00
|
|
|
close_automatic_events = {
|
|
|
|
"unfocus", "switch_buffer", "unsupported"
|
|
|
|
},
|
|
|
|
float = {
|
|
|
|
relative = "win",
|
|
|
|
},
|
|
|
|
filter_kind = false,
|
2022-11-01 16:49:01 +00:00
|
|
|
}
|