37 lines
979 B
Lua
37 lines
979 B
Lua
require'compe'.setup {
|
|
enabled = true;
|
|
autocomplete = true;
|
|
debug = false;
|
|
min_length = 1;
|
|
preselect = 'enable';
|
|
throttle_time = 80;
|
|
source_timeout = 200;
|
|
resolve_timeout = 800;
|
|
incomplete_delay = 400;
|
|
max_abbr_width = 100;
|
|
max_kind_width = 100;
|
|
max_menu_width = 100;
|
|
documentation = {
|
|
border = { '', '' ,'', ' ', '', '', '', ' ' }, -- the border option is the same as `|help nvim_open_win|`
|
|
winhighlight = "NormalFloat:CompeDocumentation,FloatBorder:CompeDocumentationBorder",
|
|
max_width = 120,
|
|
min_width = 60,
|
|
max_height = math.floor(vim.o.lines * 0.3),
|
|
min_height = 1,
|
|
};
|
|
source = {
|
|
path = true;
|
|
buffer = true;
|
|
calc = true;
|
|
nvim_lsp = true;
|
|
nvim_lua = true;
|
|
vsnip = false;
|
|
ultisnips = false;
|
|
luasnip = false;
|
|
treesitter = true;
|
|
};
|
|
}
|
|
|
|
-- select first option when none selected
|
|
vim.api.nvim_set_keymap("i", "<CR>", "compe#confirm({ 'keys': '<CR>', 'select': v:true })", { expr = true })
|