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