https://github.com/rescript-lang/nvim-treesitter-rescript
ReScript parser for Tree-sitter packed as a NeoVim plugin
https://github.com/rescript-lang/nvim-treesitter-rescript
neovim neovim-plugin rescript rescript-lang tree-sitter
Last synced: 7 months ago
JSON representation
ReScript parser for Tree-sitter packed as a NeoVim plugin
- Host: GitHub
- URL: https://github.com/rescript-lang/nvim-treesitter-rescript
- Owner: rescript-lang
- License: mit
- Archived: true
- Created: 2021-08-25T10:32:22.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-02-05T03:07:44.000Z (almost 2 years ago)
- Last Synced: 2025-04-25T19:57:25.988Z (7 months ago)
- Topics: neovim, neovim-plugin, rescript, rescript-lang, tree-sitter
- Language: C
- Homepage:
- Size: 2.58 MB
- Stars: 31
- Watchers: 5
- Forks: 11
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ReScript parser for nvim-treesitter
This repository contains a thin wrapper around [ReScript parser for Tree-sitter](https://github.com/nkrkv/tree-sitter-rescript/) to make it an easy-to-install NeoVim plugin.
## Requirements
- NeoVim 0.5.0+
- Installed and configured [`nvim-treesitter`](https://github.com/nvim-treesitter/nvim-treesitter) plugin
## Installation
Add the plugin in your `init.vim`:
```vim
Plug 'nkrkv/nvim-treesitter-rescript'
```
or using [packer.nvim](https://github.com/wbthomason/packer.nvim):
```lua
use 'nkrkv/nvim-treesitter-rescript'
```
Install the newly available parser:
```
:TSInstall rescript
```
## Contributing
This is a technical repo containing a copy of the upstream [ReScript parser for Tree-sitter](https://github.com/nkrkv/tree-sitter-rescript/). Please, open issues and PR’s there. Unless the problem is indeed related to the plugin wrapping.