101 lines
2.3 KiB
Markdown
101 lines
2.3 KiB
Markdown
<div align="center">
|
|
<img src="https://user-images.githubusercontent.com/5306901/130351259-d1b61d9d-afdc-4569-982e-2fe915b79d22.jpg"><br>
|
|
</div>
|
|
|
|
---
|
|
|
|
# Neogen - Your Annotation Toolkit
|
|
|
|
# Table Of Contents
|
|
|
|
* [Features](#features)
|
|
* [Requirements](#requirements)
|
|
* [Installation](#installation)
|
|
* [Configuration](#configuration)
|
|
* [Supported Languages](#supported-languages)
|
|
* [Usage](#usage)
|
|
* [GIFS](#gifs)
|
|
* [Contributing](#contributing)
|
|
|
|
## Features
|
|
|
|
- Create annotations with one keybind
|
|
- Defaults for multiple languages and annotation conventions
|
|
- Extremely customizable and extensible
|
|
- Written in lua
|
|
|
|
## Requirements
|
|
|
|
- Install [nvim-treesitter](https://github.com/nvim-treesitter/nvim-treesitter)
|
|
|
|
## Installation
|
|
|
|
Use your favorite package manager to install Neogen, e.g:
|
|
|
|
```lua
|
|
use {
|
|
"danymat/neogen",
|
|
config = function()
|
|
require('neogen').setup {
|
|
enabled = true
|
|
}
|
|
end,
|
|
requires = "nvim-treesitter/nvim-treesitter"
|
|
}
|
|
```
|
|
|
|
## Configuration
|
|
|
|
```lua
|
|
use {
|
|
"danymat/neogen",
|
|
config = function()
|
|
require('neogen').setup {
|
|
enabled = true, -- required for Neogen to work
|
|
input_after_comment = true, -- automatic jump (with insert mode) on inserted annotation
|
|
}
|
|
end,
|
|
requires = "nvim-treesitter/nvim-treesitter"
|
|
}
|
|
```
|
|
|
|
## Supported Languages
|
|
|
|
There is a list of supported languages and fields, with their annotation style
|
|
|
|
| Language | Annotation conventions | Supported fields |
|
|
|---|---|---|
|
|
| lua | Emmylua | |
|
|
| | | `@param` |
|
|
| | | `@varargs` |
|
|
| | | `@return` |
|
|
|
|
## Usage
|
|
|
|
I exposed a command `:Neogen` to generate the annotations.
|
|
You can bind it to your keybind of choice, like so:
|
|
|
|
```lua
|
|
vim.api.nvim_set_keymap("n", "<Leader>ng", ":Neogen<CR>", {})
|
|
```
|
|
|
|
If you are inside a function, it'll generate the documentation for you with Emmylua annotation convention
|
|
|
|
## GIFS
|
|
|
|

|
|
|
|
## Contributing
|
|
|
|
Adding support for new languages is quite easy, and a documentation will be available soon!
|
|
|
|
## Credits
|
|
|
|
- Binx, for making that gorgeous logo for free!
|
|
- [Github](https://github.com/Binx-Codes/)
|
|
- [Reddit](https://www.reddit.com/u/binxatmachine)
|
|
- bandithedoge, for recreating the logo in svg form!
|
|
- [Website](https://bandithedoge.com)
|
|
- [Github](https://github.com/bandithedoge)
|
|
- [YouTube](https://youtube.com/bandithedoge)
|