From 38e2b734083e56da748737a46e733ca3b18b87f3 Mon Sep 17 00:00:00 2001 From: jdhao Date: Fri, 9 Apr 2021 00:29:18 +0800 Subject: [PATCH] update nvim-compe settings --- core/plugins.vim | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/core/plugins.vim b/core/plugins.vim index a264a3f..e2e1809 100644 --- a/core/plugins.vim +++ b/core/plugins.vim @@ -419,7 +419,7 @@ require'compe'.setup { autocomplete = true; debug = false; min_length = 1; - preselect = 'enable'; + preselect = 'always'; throttle_time = 80; source_timeout = 200; incomplete_delay = 400; @@ -431,11 +431,13 @@ require'compe'.setup { source = { path = true; buffer = true; - calc = true; + spell = true; + emoji = true; nvim_lsp = true; nvim_lua = true; - vsnip = false; ultisnips = true; + calc = false; + vsnip = false; }; }