From 1b17f8f32606005d99c871c9778419dbcc0d5baa Mon Sep 17 00:00:00 2001 From: Artemis Tosini Date: Mon, 9 Dec 2024 23:24:20 +0000 Subject: [PATCH] nvim: require ctrl+space --- sets/nvim.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sets/nvim.nix b/sets/nvim.nix index eb4fa89..9dcd08f 100644 --- a/sets/nvim.nix +++ b/sets/nvim.nix @@ -128,13 +128,12 @@ lib.setAttrByPath setPath ( cmp = { enable = true; settings = { + completion.autocomplete = false; snippet.expand = "function(args) require('luasnip').lsp_expand(args.body) end"; sources = [ { name = "luasnip"; } { name = "nvim_lsp"; } { name = "path"; } - { name = "calc"; } - { name = "emoji"; } ]; mapping = { "" = "cmp.mapping.confirm({ select = true })";