From 5f8852435dfcc481c8d7518daeb0aec1fffce2ff Mon Sep 17 00:00:00 2001 From: Gabe Venberg Date: Thu, 21 Apr 2022 15:04:30 -0500 Subject: [PATCH] removed digraphs completion for now. --- neovim/.config/nvim/lua/cmp-lsp.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/neovim/.config/nvim/lua/cmp-lsp.lua b/neovim/.config/nvim/lua/cmp-lsp.lua index 992f9cf..006d995 100644 --- a/neovim/.config/nvim/lua/cmp-lsp.lua +++ b/neovim/.config/nvim/lua/cmp-lsp.lua @@ -64,12 +64,11 @@ cmp.setup { { name = 'luasnip' }, { name = 'buffer' }, { name = 'dictionary' }, - { name = 'digraphs' }, { name = 'spell' }, { name = 'nvim_lsp_signature_help' }, { name = 'emoji' }, { name = 'latex_symbols' }, - { name = 'treesitter' }, + -- { name = 'digraphs' }, }, } @@ -81,7 +80,8 @@ cmp.setup.cmdline(':', { cmp.setup.cmdline('/', { sources = cmp.config.sources({ - { name = 'nvim_lsp_document_symbol' } + { name = 'nvim_lsp_document_symbol' }, + { name = 'treesitter' }, }, { { name = 'buffer' } })