commit e56a849d8cf9d0ee19df3eac191ad80c55e7da90
parent cceaffeb7a8c2f9df00219f406cc2b3613162218
Author: Alex Balgavy <alexander.balgavy@spaceapplications.com>
Date: Fri, 1 Aug 2025 15:45:28 +0200
nvim: disable cmdline completion
Diffstat:
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/nvim/lua/plugins/completion.lua b/nvim/lua/plugins/completion.lua
@@ -30,7 +30,11 @@ return {
},
-- (Default) Only show the documentation popup when manually triggered
- completion = { documentation = { auto_show = false } },
+ completion = {
+ documentation = { auto_show = false },
+ },
+
+ cmdline = { enabled = false },
-- Default list of enabled providers defined so that you can extend it
-- elsewhere in your config, without redefining it, due to `opts_extend`