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