https://github.com/bruxisma/gitmoji.vim
Use gitmoji from within git commits!
https://github.com/bruxisma/gitmoji.vim
gitmoji gitmojis vim vim-plugin vim-plugins
Last synced: 3 months ago
JSON representation
Use gitmoji from within git commits!
- Host: GitHub
- URL: https://github.com/bruxisma/gitmoji.vim
- Owner: bruxisma
- License: mit
- Created: 2021-06-18T05:50:30.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-12-27T16:24:09.000Z (5 months ago)
- Last Synced: 2025-02-01T20:25:52.026Z (4 months ago)
- Topics: gitmoji, gitmojis, vim, vim-plugin, vim-plugins
- Language: Vim Script
- Homepage:
- Size: 44.9 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
Awesome Lists containing this project
README
# Overview
This is a simple pure VimL plugin for using [gitmoji](https://gitmoji.dev) from
within Vim. Specifically, it offers `iabbrev` replacements for the emoji
themselves, autocomplete, and aliases for *some* gitmoji.Each of these (with the exception of autocomplete) are configurable.
Autocomplete is *always* enabled when the filetype is set to `gitcommit`.gitmoji.vim currently requires the `matchfuzzy()` vim function. This was added
in September of 2020.# Installation
gitmoji.vim uses the typical "module" package layout of a vim plugin. Simply
add it with your favorite plugin manager. For example, using
[`vim-plug`](https://github.com/junegunn/vim-plug):```vim
Plug 'bruxisma/gitmoji.vim'
```## Configuration
Information regarding configuration settings for gitmoji.vim can be found in
the [documentation](doc/gitmoji.txt). Alternatively, running `:help gitmoji` as
an `Ex` command in vim will also provide all the necessary details.