refactor: remove floating windows (#262)

This commit is contained in:
yetone
2024-08-27 14:28:10 +08:00
committed by GitHub
parent 8fa351f563
commit 50d0748901
2 changed files with 107 additions and 241 deletions

View File

@@ -64,6 +64,10 @@ H.keymaps = function()
})
end
H.signs = function()
vim.fn.sign_define("AvanteInputPromptSign", { text = "> " })
end
H.augroup = api.nvim_create_augroup("avante_autocmds", { clear = true })
H.autocmds = function()
@@ -242,6 +246,7 @@ function M.setup(opts)
H.autocmds()
H.commands()
H.keymaps()
H.signs()
M.did_setup = true
end