aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Bossing <info@maxbossing.de>2025-07-23 13:15:33 +0200
committerMax Bossing <info@maxbossing.de>2025-07-23 13:15:33 +0200
commitfddca6f95893d1753b87ff3ff76f05335921f567 (patch)
treec14124c6f8e5af453e277abc334c334a1979bc22
parentce2d333f96f29725aab9bb67eeff7971adc8aeb0 (diff)
lsp(cmp): remove cmdline completion, that fucked with it
-rw-r--r--nvim/lua/lsp.lua10
1 files changed, 0 insertions, 10 deletions
diff --git a/nvim/lua/lsp.lua b/nvim/lua/lsp.lua
index 5ff590f..c85b049 100644
--- a/nvim/lua/lsp.lua
+++ b/nvim/lua/lsp.lua
@@ -43,14 +43,4 @@ cmp.setup.cmdline({ '/', '?' }, {
}
})
-cmp.setup.cmdline(':', {
- mapping = cmp.mapping.preset.cmdline(),
- sources = cmp.config.sources({
- { name = 'path' }
- }, {
- { name = 'cmdline' }
- }),
- matching = { disallow_symbol_nonprefix_matching = false }
-})
-
require('lsp_signature').setup()