Tree-sitter Noir

test npm

Noir grammar and parser for tree-sitter

Emacs

To use with Emacs; use the following package here.

NeoVim

  1. Make sure that you have the latest version of Neovim and have also installed the neovim tree-sitter plugin.

  2. Add the following lines to your init.vim file:

```lua

lua <config = require "nvim-treesitter.parsers".getparser_configs()

parserconfig.noir = { installinfo = { url = "https://github.com/hhamud/tree-sitter-noir", -- the url for this tree-sitter grammar files = {"src/parser.c", "src/scanner.cc"}, }, filetype = "noir", -- if filetype does not agrees with parser name you can define this field }

require'nvim-treesitter.configs'.setup { ensure_installed = "noir", -- The custom parser highlight = { enable = true, -- false will disable the whole extension }, } EOF ```

Other

To install the grammar from NPM

shell npm i tree-sitter-noir

References

Contributing

Contributions to tree-sitter-noir are welcome. If you find any issues or have suggestions for improvement, please create a new issue or submit a pull request on the GitHub repository.