mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-11-12 04:52:53 +01:00
9 lines
221 B
Lua
9 lines
221 B
Lua
|
local aerial = require "aerial"
|
||
|
local map = vim.api.nvim_set_keymap
|
||
|
|
||
|
aerial.setup {
|
||
|
backends = { "lsp", "treesitter", "markdown", "man" },
|
||
|
}
|
||
|
|
||
|
map("n", "-a", "<cmd>AerialToggle<CR>", { noremap = true, silent = true })
|