This commit is contained in:
Steve 2022-12-03 20:51:19 -05:00
commit e25cf3edec
34 changed files with 3718 additions and 0 deletions

View file

@ -0,0 +1,20 @@
local M = {}
function M.setup()
local aerial = require("aerial")
local conf = {
backends = { "treesitter", "lsp", "markdown", "man" },
float = {
relative = "win",
override = function(conf)
local padding = 1
conf.anchor = 'NE'
conf.row = padding
conf.col = vim.api.nvim_win_get_width(0) - padding
return conf
end,
},
}
aerial.setup(conf)
end
return M