{"id":26658326,"url":"https://github.com/vipul-sharma20/nvim-jira","last_synced_at":"2025-04-11T13:07:58.396Z","repository":{"id":76064466,"uuid":"274126180","full_name":"vipul-sharma20/nvim-jira","owner":"vipul-sharma20","description":"A Neovim Jira plugin","archived":false,"fork":false,"pushed_at":"2023-04-20T16:58:39.000Z","size":14,"stargazers_count":12,"open_issues_count":0,"forks_count":4,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-10T14:46:53.099Z","etag":null,"topics":["neovim","neovim-plugin","nvim","vim"],"latest_commit_sha":null,"homepage":null,"language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vipul-sharma20.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2020-06-22T12:06:12.000Z","updated_at":"2023-11-30T17:49:06.000Z","dependencies_parsed_at":null,"dependency_job_id":"3ebbd2be-0bee-4d46-8e1a-d3f1780035ab","html_url":"https://github.com/vipul-sharma20/nvim-jira","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vipul-sharma20%2Fnvim-jira","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vipul-sharma20%2Fnvim-jira/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vipul-sharma20%2Fnvim-jira/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vipul-sharma20%2Fnvim-jira/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vipul-sharma20","download_url":"https://codeload.github.com/vipul-sharma20/nvim-jira/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248404581,"owners_count":21097778,"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":["neovim","neovim-plugin","nvim","vim"],"created_at":"2025-03-25T09:19:18.179Z","updated_at":"2025-04-11T13:07:58.384Z","avatar_url":"https://github.com/vipul-sharma20.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"# nvim-jira\n\nA Neovim plugin for Jira\n\n🚧 *Note: Work inprogress*\n\nInstallation\n============\n\n| Plugin Manager | Install with... |\n| ------------- | ------------- |\n| [Pathogen][1] | `git clone https://github.com/vipul-sharma20/nvim-jira ~/.vim/bundle/nvim-jira`\u003cbr/\u003eRemember to run `:Helptags` to generate help tags |\n| [NeoBundle][2] | `NeoBundle 'vipul-sharma20/nvim-jira'` |\n| [Vundle][3] | `Plugin 'vipul-sharma20/nvim-jira'` |\n| [Plug][4] | `Plug 'vipul-sharma20/nvim-jira'` |\n| [VAM][5] | `call vam#ActivateAddons([ 'nvim-jira' ])` |\n| [Dein][6] | `call dein#add('vipul-sharma20/nvim-jira')` |\n| [minpac][7] | `call minpac#add('vipul-sharma20/nvim-jira')` |\n| manual | copy all of the files into your `~/.vim` directory |\n\n# Configuration\n\n* Get API access token for JIRA and set it to `JIRA_TOKEN` environment\n  variable\n\n  `export JIRA_TOKEN=\"RANDOM123\"`\n\n* Set Jira user name as `JIRA_USERNAME` environment variable\n\n  Eg: `export JIRA_USERNAME=\"user@domain.com\"`\n\n* Set Jira host as `JIRA_HOST` environment variable\n\n  Eg: `export JIRA_HOST=\"https://example.atlassian.net\"`\n\n* Install `lua-cjson` (using luarocks: `luarocks install lua-cjson`)\n* Install `luasec` (using luarocks: `luarocks install luasec`)\n\nYou might have different Lua versions in your system. We need to install the\nmodules for Lua shipped with nvim.\n\nCheck the Lua version of nvim by:\n\n`:lua print(_VERSION)`\n\nInstall modules for this version. Example:\n\n`luarocks --lua-version 5.1 install lua-cjson`\n\n# Documentation\n\n`:h nvim-jira`\n\nor check [here][0]\n\n# Commands\n\n| Command              | List                                                                                                    |\n| ---                  | ---                                                                                                     |\n| `Jira`               | Fetches tickets assigned to you and tickets you are watching. (Tickets are cached for the nvim session) |\n| `JiraReload`         | Reload the tickets. Works same as `:Jira` except it hits the API everytime                              |\n\nCheck some keybindings in the documentation `:h nvim-jira`\n\n# LICENSE\n\nMIT\n\n# Credits\n\nRafał Camlet: https://github.com/rafcamlet/nvim-whid\n\n# Disclaimer\n\nI have created this plugin to learn how to use the Lua runtime embedded with\nnvim to build plugins.  Things may look ugly and sub-optimal.\n\n\n[0]: https://github.com/vipul-sharma20/nvim-jira/tree/master/doc/nvim-jira.txt\n[1]: https://github.com/tpope/vim-pathogen\n[2]: https://github.com/Shougo/neobundle.vim\n[3]: https://github.com/VundleVim/Vundle.vim\n[4]: https://github.com/junegunn/vim-plug\n[5]: https://github.com/MarcWeber/vim-addon-manager\n[6]: https://github.com/Shougo/dein.vim\n[7]: https://github.com/k-takata/minpac/\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvipul-sharma20%2Fnvim-jira","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvipul-sharma20%2Fnvim-jira","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvipul-sharma20%2Fnvim-jira/lists"}