diff --git a/home/vim-dev/dev.lua b/home/vim-dev/dev.lua index a16c701..7139f59 100644 --- a/home/vim-dev/dev.lua +++ b/home/vim-dev/dev.lua @@ -12,9 +12,17 @@ end -- Completion local cmp = require'cmp' cmp.setup({ + -- Disable completions if we're in a comment + enabled = function() + if require"cmp.config.context".in_treesitter_capture("comment")==true or require"cmp.config.context".in_syntax_group("Comment") then + return false + else + return true + end + end, window = { - -- completion = cmp.config.window.bordered(), - -- documentation = cmp.config.window.bordered(), + completion = cmp.config.window.bordered(), + documentation = cmp.config.window.bordered(), }, mapping = cmp.mapping.preset.insert({ [''] = cmp.mapping.complete(),