{"id":9407160,"url":"https://github.com/lambdalisue/vim-fern-git-status","last_synced_at":"2025-04-28T15:57:39.285Z","repository":{"id":47730288,"uuid":"283389372","full_name":"lambdalisue/vim-fern-git-status","owner":"lambdalisue","description":"🌿  Add Git status badge integration on file:// scheme on fern.vim","archived":false,"fork":false,"pushed_at":"2021-07-15T01:20:03.000Z","size":71,"stargazers_count":89,"open_issues_count":6,"forks_count":6,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-03-30T11:04:46.652Z","etag":null,"topics":["fern-vim-plugin","git"],"latest_commit_sha":null,"homepage":"","language":"Vim script","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/lambdalisue.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}},"created_at":"2020-07-29T03:34:24.000Z","updated_at":"2025-03-14T02:09:56.000Z","dependencies_parsed_at":"2022-08-24T13:37:29.093Z","dependency_job_id":null,"html_url":"https://github.com/lambdalisue/vim-fern-git-status","commit_stats":null,"previous_names":["lambdalisue/vim-fern-git-status"],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lambdalisue%2Fvim-fern-git-status","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lambdalisue%2Fvim-fern-git-status/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lambdalisue%2Fvim-fern-git-status/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lambdalisue%2Fvim-fern-git-status/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lambdalisue","download_url":"https://codeload.github.com/lambdalisue/vim-fern-git-status/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246461642,"owners_count":20781361,"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":["fern-vim-plugin","git"],"created_at":"2024-05-10T18:04:19.733Z","updated_at":"2025-03-31T11:31:11.655Z","avatar_url":"https://github.com/lambdalisue.png","language":"Vim script","funding_links":[],"categories":["Vim Script"],"sub_categories":[],"readme":"# fern-git-status.vim\n\n[![fern renderer](https://img.shields.io/badge/🌿%20fern-plugin-yellowgreen)](https://github.com/lambdalisue/fern.vim)\n![Support Vim 8.1 or above](https://img.shields.io/badge/support-Vim%208.1%20or%20above-yellowgreen.svg)\n![Support Neovim 0.4 or above](https://img.shields.io/badge/support-Neovim%200.4%20or%20above-yellowgreen.svg)\n![Support Git 2.25 or above](https://img.shields.io/badge/support-Git%202.25%20or%20above-green.svg)\n[![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)\n[![Doc](https://img.shields.io/badge/doc-%3Ah%20fern--git--status-orange.svg)](doc/fern-git-status.txt)\n\n[![reviewdog](https://github.com/lambdalisue/fern-git-status.vim/workflows/reviewdog/badge.svg)](https://github.com/lambdalisue/fern-git-status.vim/actions?query=workflow%3Areviewdog)\n\nfern-git-status is a [fern.vim][] plugin to add git status on node's badge asynchronously like:\n\n![fern-git-status](https://user-images.githubusercontent.com/546312/89777703-2483cd80-db47-11ea-84dc-7690d2996d89.png)\n\n[fern.vim]: https://github.com/lambdalisue/fern.vim\n\n## Usage\n\nJust install the plugin and visit a git repository which has some dirty status.\n\n## Status\n\nThe plugin shows status of nodes as [short format of git status](https://git-scm.com/docs/git-status#_short_format) like:\n\n```\nX          Y     Meaning\n-------------------------------------------------\n         [AMD]   not updated\nM        [ MD]   updated in index\nA        [ MD]   added to index\nD                deleted from index\nR        [ MD]   renamed in index\nC        [ MD]   copied in index\n[MARC]           index and work tree matches\n[ MARC]     M    work tree changed since index\n[ MARC]     D    deleted in work tree\n[ D]        R    renamed in work tree\n[ D]        C    copied in work tree\n-------------------------------------------------\nD           D    unmerged, both deleted\nA           U    unmerged, added by us\nU           D    unmerged, deleted by them\nU           A    unmerged, added by them\nD           U    unmerged, deleted by us\nA           A    unmerged, both added\nU           U    unmerged, both modified\n-------------------------------------------------\n?           ?    untracked\n!           !    ignored\n-------------------------------------------------\n```\n\nThe status of directory indicates that the directory contains index (left) or work tree (right) changes.\nFor example, single `-` on right side means that the directory contains some work tree changes but index changes.\n\n## Colors\n\nSee `:help fern-git-status-highlight` to customize the colors.\n\n## Performance\n\nDisable the following options one by one if you encounter performance issues.\n\n```vim\n\" Disable listing ignored files/directories\nlet g:fern_git_status#disable_ignored = 1\n\n\" Disable listing untracked files\nlet g:fern_git_status#disable_untracked = 1\n\n\" Disable listing status of submodules\nlet g:fern_git_status#disable_submodules = 1\n\n\" Disable listing status of directories\nlet g:fern_git_status#disable_directories = 1\n```\n\n:rocket: For large repositories it is also recommended to enable the Git (2.24+)\n[manyFiles\nfeature](https://git-scm.com/docs/git-config#Documentation/git-config.txt-featuremanyFiles)\nin the working directory as follows:\n\n```sh\ngit config feature.manyFiles true\n```\n\n## See also\n\n- [fern-mapping-git.vim](https://github.com/lambdalisue/fern-mapping-git.vim) - Add git related mappings\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flambdalisue%2Fvim-fern-git-status","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flambdalisue%2Fvim-fern-git-status","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flambdalisue%2Fvim-fern-git-status/lists"}