34 lines
1.0 KiB
Markdown
34 lines
1.0 KiB
Markdown
# Contributing to `nvim-tree.lua`
|
|
|
|
Thank you for contributing.
|
|
|
|
## Styling and formatting
|
|
|
|
Code is formatted using luacheck, and linted using stylua.
|
|
You can install these with:
|
|
|
|
```bash
|
|
luarocks install luacheck
|
|
cargo install stylua
|
|
```
|
|
|
|
You can setup the git hooks by running `scripts/setup-hooks.sh`.
|
|
|
|
## Adding new actions
|
|
|
|
To add a new action, add a file in `actions/name-of-the-action.lua`. You should export a `setup` function if some configuration is needed.
|
|
Once you did, you should run the `scripts/update-help.sh`.
|
|
|
|
## Documentation
|
|
|
|
When adding new options, you should declare the defaults in the main `nvim-tree.lua` file.
|
|
Once you did, you should run the `scripts/update-help.sh`.
|
|
|
|
Documentation for options should also be added, see how this is done after `nvim-tree.disable_netrw` in the `nvim-tree-lua.txt` file.
|
|
|
|
## Pull Request
|
|
|
|
Please reference any issues in the description e.g. "resolves #1234".
|
|
|
|
Please check "allow edits by maintainers" to allow nvim-tree developers to make small changes such as documentation tweaks.
|