diff options
Diffstat (limited to 'lua/lsp.lua')
-rw-r--r-- | lua/lsp.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lua/lsp.lua b/lua/lsp.lua index 35f36be..dca84dd 100644 --- a/lua/lsp.lua +++ b/lua/lsp.lua @@ -167,8 +167,9 @@ cmp.setup({ end local verbosity = 1 + local over_9000 = 2 if vim.bo.filetype == 'java' then - verbosity = 2 + verbosity = over_9000 if vim_item.kind == "Method" then local name, args = split_silly_function_arguments(vim_item.abbr) vim_item.abbr = name @@ -187,6 +188,7 @@ cmp.setup({ { name = "path" }, { name = "vim_vsnip" }, { name = "buffer", keyword_length = 5 }, + com }, sorting = { |