diff options
author | listout <listout@protonmail.com> | 2022-09-01 16:10:58 +0530 |
---|---|---|
committer | listout <listout@protonmail.com> | 2022-09-01 16:26:46 +0530 |
commit | 572cd6a8e8d943456c209529914fb68ef4ea4644 (patch) | |
tree | 833fd847dd48b968cea586c038ccd26f29495b89 /lua/plugins | |
parent | 0f7f546630b59a8895016fc1c379140369e0f0c6 (diff) |
nvim: cmp: removing redundant code
Signed-off-by: listout <listout@protonmail.com>
Diffstat (limited to 'lua/plugins')
-rw-r--r-- | lua/plugins/cmp.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lua/plugins/cmp.lua b/lua/plugins/cmp.lua index e42b9f2..a72ab05 100644 --- a/lua/plugins/cmp.lua +++ b/lua/plugins/cmp.lua @@ -9,7 +9,6 @@ cmp.setup { }, snippet = { expand = function(args) - luasnip.lsp_expand(args.body) require('luasnip').lsp_expand(args.body) -- For `luasnip` users. end, }, |