{"id":43496590,"url":"https://github.com/olacin/telescope-gitmoji.nvim","last_synced_at":"2026-02-03T10:38:30.392Z","repository":{"id":109694472,"uuid":"429229878","full_name":"olacin/telescope-gitmoji.nvim","owner":"olacin","description":"A Telescope integration of gitmoji.","archived":false,"fork":false,"pushed_at":"2024-04-07T17:24:50.000Z","size":22,"stargazers_count":12,"open_issues_count":0,"forks_count":4,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-04-07T18:31:58.891Z","etag":null,"topics":["gitmoji","neovim","telescope"],"latest_commit_sha":null,"homepage":"","language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/olacin.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,"dei":null}},"created_at":"2021-11-17T23:16:24.000Z","updated_at":"2024-02-16T11:42:58.000Z","dependencies_parsed_at":"2024-04-07T18:41:06.835Z","dependency_job_id":null,"html_url":"https://github.com/olacin/telescope-gitmoji.nvim","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/olacin/telescope-gitmoji.nvim","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/olacin%2Ftelescope-gitmoji.nvim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/olacin%2Ftelescope-gitmoji.nvim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/olacin%2Ftelescope-gitmoji.nvim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/olacin%2Ftelescope-gitmoji.nvim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/olacin","download_url":"https://codeload.github.com/olacin/telescope-gitmoji.nvim/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/olacin%2Ftelescope-gitmoji.nvim/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29041859,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-03T10:09:22.136Z","status":"ssl_error","status_checked_at":"2026-02-03T10:09:16.814Z","response_time":96,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["gitmoji","neovim","telescope"],"created_at":"2026-02-03T10:38:29.465Z","updated_at":"2026-02-03T10:38:30.386Z","avatar_url":"https://github.com/olacin.png","language":"Lua","readme":"# telescope-gitmoji.nvim\n\nA Telescope integration of [gitmoji](https://gitmoji.dev/).\n\n## Installation\n\n```lua\n-- lazy\n{\n  \"olacin/telescope-gitmoji.nvim\",\n  config = function()\n      require(\"telescope\").load_extension(\"gitmoji\")\n  end,\n  dependencies = { \"nvim-telescope/telescope.nvim\", \"nvim-lua/plenary.nvim\" }\n}\n\n-- vim-plug\nPlug 'olacin/telescope-gitmoji.nvim'\n\n-- packer\nuse 'olacin/telescope-gitmoji.nvim'\n```\n\n## Usage\n\n```\n# As a command\n:Telescope gitmoji\n\n# As a lua function\nrequire('telescope').extensions.gitmoji.gitmoji()\n```\n\n## Configuration\n\nYou can customize action on selection within Telescope `setup()` function.\n\n```lua\ntelescope.setup({\n    ...\n    extensions = {\n        gitmoji = {\n            action = function(entry)\n                -- entry = {\n                --   display = \"🐛 Fix a bug.\",\n                --   index = 4,\n                --   ordinal = \"Fix a bug.\",\n                --   value = {\n                --     description = \"Fix a bug.\",\n                --     text = \":bug:\",\n                --     value = \"🐛\"\n                --   }\n                -- }\n                local emoji = entry.value.value\n                vim.ui.input({ prompt = \"Enter commit message: \" .. emoji .. \" \"}, function(msg)\n                    if not msg then\n                        return\n                    end\n                    -- Insert text instead of emoji in message\n                    local emoji_text = entry.value.text\n                    vim.cmd(':G commit -m \"' .. emoji_text .. ' ' .. msg .. '\"')\n                end)\n            end,\n        },\n    },\n})\n\ntelescope.load_extension(\"gitmoji\")\n```\n\n### Default action\n\n```lua\n-- Default action (here with tpope vim-fugitive)\ngm_actions.commit = function(entry)\n    local emoji = entry.value.value\n    vim.ui.input({ prompt = \"Enter commit message: \" .. emoji .. \" \" }, function(msg)\n        if not msg then\n            return\n        end\n\n        local git_tool = \":!git\"\n        if vim.g.loaded_fugitive then\n            git_tool = \":G\"\n        end\n\n        vim.cmd(string.format('%s commit -m \"%s %s\"', git_tool, emoji, msg))\n    end)\nend\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Folacin%2Ftelescope-gitmoji.nvim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Folacin%2Ftelescope-gitmoji.nvim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Folacin%2Ftelescope-gitmoji.nvim/lists"}