{"id":13761190,"url":"https://github.com/saadparwaiz1/cmp_luasnip","last_synced_at":"2025-10-06T23:43:29.421Z","repository":{"id":37835269,"uuid":"394367978","full_name":"saadparwaiz1/cmp_luasnip","owner":"saadparwaiz1","description":"luasnip completion source for nvim-cmp","archived":false,"fork":false,"pushed_at":"2023-10-09T19:15:02.000Z","size":38,"stargazers_count":709,"open_issues_count":12,"forks_count":32,"subscribers_count":10,"default_branch":"master","last_synced_at":"2024-10-30T02:37:36.723Z","etag":null,"topics":["lua","luasnip","neovim","nvim-cmp"],"latest_commit_sha":null,"homepage":"","language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/saadparwaiz1.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2021-08-09T16:41:18.000Z","updated_at":"2024-10-29T21:41:49.000Z","dependencies_parsed_at":"2024-01-15T03:58:56.196Z","dependency_job_id":"a5cc02b0-a42d-46fa-9998-1b21f2782d31","html_url":"https://github.com/saadparwaiz1/cmp_luasnip","commit_stats":{"total_commits":46,"total_committers":8,"mean_commits":5.75,"dds":0.6304347826086957,"last_synced_commit":"18095520391186d634a0045dacaa346291096566"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saadparwaiz1%2Fcmp_luasnip","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saadparwaiz1%2Fcmp_luasnip/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saadparwaiz1%2Fcmp_luasnip/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saadparwaiz1%2Fcmp_luasnip/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/saadparwaiz1","download_url":"https://codeload.github.com/saadparwaiz1/cmp_luasnip/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247138751,"owners_count":20890096,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["lua","luasnip","neovim","nvim-cmp"],"created_at":"2024-08-03T13:01:42.705Z","updated_at":"2025-10-06T23:43:29.341Z","avatar_url":"https://github.com/saadparwaiz1.png","language":"Lua","funding_links":[],"categories":["Lua","Completion","Plugins"],"sub_categories":["Diagnostics"],"readme":"# cmp_luasnip\n\n[luasnip](https://github.com/L3MON4D3/LuaSnip) completion source for [nvim-cmp](https://github.com/hrsh7th/nvim-cmp)\n\n```lua\n-- Installation\nuse { 'L3MON4D3/LuaSnip' }\nuse {\n  'hrsh7th/nvim-cmp',\n  config = function ()\n    require'cmp'.setup {\n    snippet = {\n      expand = function(args)\n        require'luasnip'.lsp_expand(args.body)\n      end\n    },\n\n    sources = {\n      { name = 'luasnip' },\n      -- more sources\n    },\n  }\n  end\n}\nuse { 'saadparwaiz1/cmp_luasnip' }\n```\n\nTo disable filtering completion candidates by snippet's `show_condition`\nuse the following options in `sources`:\n\n```lua\nsources = {\n  { name = 'luasnip', option = { use_show_condition = false } },\n  -- more sources\n},\n```\n\nThis can also be configured on per-buffer basis as described in cmp's README\n[here](https://github.com/hrsh7th/nvim-cmp#how-to-disable-nvim-cmp-on-the-specific-buffer)\nand [here](https://github.com/hrsh7th/nvim-cmp#sources-type-tablecmpsourceconfig).\n\nThe same way you can de-/activate whether autosnippets should be included in the\ncompletion list or not (including them can be a bit problematic since when you\nselect the entry, the text gets inserted and the snippet automatically\ntriggers). This option defaults to `false` to be backwards compatible. Example:\n\n```lua\nsources = {\n  { name = 'luasnip', option = { show_autosnippets = true } },\n  -- more sources\n},\n```\n\nHint: If you want to just hide some autosnippets consider the `hidden` option of\nluaSnip\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsaadparwaiz1%2Fcmp_luasnip","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsaadparwaiz1%2Fcmp_luasnip","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsaadparwaiz1%2Fcmp_luasnip/lists"}