fix
This commit is contained in:
parent
69b19c366d
commit
1d3b6ab594
|
@ -10,7 +10,6 @@ local capabilities = require('cmp_nvim_lsp').default_capabilities()
|
|||
end,
|
||||
},
|
||||
window = {
|
||||
|
||||
completion = cmp.config.window.bordered({
|
||||
col_offset = -3, -- align the abbr and word on cursor (due to fields order below)
|
||||
side_padding = 0,
|
||||
|
|
|
@ -3,5 +3,3 @@ require("clint.settings")
|
|||
require("clint.colorscheme")
|
||||
require("clint.lsp")
|
||||
require("clint.statusline")
|
||||
require("clint.completion")
|
||||
require("clint.dap")
|
||||
|
|
|
@ -39,8 +39,11 @@ cmp.setup({
|
|||
end,
|
||||
},
|
||||
window = {
|
||||
-- completion = cmp.config.window.bordered(),
|
||||
-- documentation = cmp.config.window.bordered(),
|
||||
completion = cmp.config.window.bordered({
|
||||
col_offset = -3, -- align the abbr and word on cursor (due to fields order below)
|
||||
side_padding = 0,
|
||||
}),
|
||||
documentation = cmp.config.window.bordered(),
|
||||
},
|
||||
mapping = cmp.mapping.preset.insert({
|
||||
|
||||
|
|
Loading…
Reference in New Issue