Disable nvim-cmp .. its just always too eager.
All checks were successful
Build and Push Docker Image / build-push (push) Successful in 5m27s

This commit was merged in pull request #23.
This commit is contained in:
Shaun Setlock
2025-07-01 21:40:01 -04:00
committed by Shaun Setlock
parent cc828c381b
commit f1c0d9ced5

View File

@@ -13,7 +13,6 @@ return {
-- Required.
"nvim-lua/plenary.nvim",
-- Recommended.
"hrsh7th/nvim-cmp",
"nvim-telescope/telescope.nvim",
"nvim-treesitter/nvim-treesitter",
},
@@ -29,7 +28,7 @@ return {
-- Optional, completion of wiki links, local markdown links, and tags using nvim-cmp.
completion = {
-- Set to false to disable completion.
nvim_cmp = true,
nvim_cmp = false,
-- Trigger completion at 4 chars.
min_chars = 4,
},