Update lsp progress popup, disable commit confirmation in neogit
This commit is contained in:
parent
6b90efb5bb
commit
c6ed66af9c
|
@ -13,13 +13,12 @@ return {
|
|||
end,
|
||||
config = true,
|
||||
opts = {
|
||||
disable_commit_confirmation = true,
|
||||
disable_builtin_notifications = true,
|
||||
kind = "floating",
|
||||
commit_popup = { kind = "floating" },
|
||||
preview_buffer = { kind = "floating" },
|
||||
popup = { kind = "floating" },
|
||||
integrations = {
|
||||
diffview = true,
|
||||
},
|
||||
integrations = { diffview = true },
|
||||
},
|
||||
}
|
||||
|
|
|
@ -7,7 +7,6 @@ return {
|
|||
config = true,
|
||||
opts = {
|
||||
lsp = {
|
||||
progress = { enabled = true, view = "virtualtext" },
|
||||
-- override markdown rendering so that **cmp** and other plugins use **Treesitter**
|
||||
override = {
|
||||
["vim.lsp.util.convert_input_to_markdown_lines"] = true,
|
||||
|
@ -15,6 +14,13 @@ return {
|
|||
["cmp.entry.get_documentation"] = true,
|
||||
},
|
||||
},
|
||||
views = {
|
||||
mini = {
|
||||
position = { row = -2 },
|
||||
border = { style = "rounded" },
|
||||
win_options = { winblend = 0 },
|
||||
},
|
||||
},
|
||||
-- you can enable a preset for easier configuration
|
||||
presets = {
|
||||
bottom_search = false, -- use a classic bottom cmdline for search
|
||||
|
|
Loading…
Reference in a new issue