diff options
author | Brahmajit Das <listout@listout.xyz> | 2025-05-24 02:06:56 +0530 |
---|---|---|
committer | Brahmajit Das <listout@listout.xyz> | 2025-05-24 02:06:56 +0530 |
commit | 26b3624b686cf4a2603fecf99ae10d90559bf152 (patch) | |
tree | 8b033d526d46f262ae94ec9a615f3562e8ba9e9f /lua/plugins/completion.lua | |
parent | a134f08854ee4684937f0deb4600fa76bff2c85c (diff) |
nvim: lua: plugins: completion: sane default for snippets
Signed-off-by: Brahmajit Das <listout@listout.xyz>
Diffstat (limited to 'lua/plugins/completion.lua')
-rw-r--r-- | lua/plugins/completion.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/plugins/completion.lua b/lua/plugins/completion.lua index 1e82346..6663a1b 100644 --- a/lua/plugins/completion.lua +++ b/lua/plugins/completion.lua @@ -110,7 +110,7 @@ return { end, { "i", "s" }), }), sources = cmp.config.sources({ - { name = 'luasnip', option = { use_show_condition = false } }, + { name = 'luasnip', option = { show_autosnippets = true } }, { name = 'nvim_lsp' }, { name = 'nvim_lsp_signature_help' }, { name = 'path' }, |