Files
neovim-config/lua/plugins/aerial.lua
2025-10-23 22:16:42 +09:00

23 lines
492 B
Lua

return {
'stevearc/aerial.nvim',
opts = {
backends = { "treesitter", "lsp", "markdown", "asciidoc", "man" },
layout = {
min_width = 0.9
},
float = {
relative = "win",
min_height = 0.9
},
},
dependencies = {
"nvim-treesitter/nvim-treesitter",
"nvim-tree/nvim-web-devicons"
},
keys = {
{ "\\", "<Cmd>AerialToggle float<CR>", desc = "Aerial toggle floating" }
},
}