d2 grammar for tree-sitter
Go to file
Dmitriy Pleshevskiy ef95506be6
doc: update screenshots
2023-06-16 01:42:08 +03:00
assets doc: update screenshots 2023-06-16 01:42:08 +03:00
bindings Add support of any escape character in text block 2022-12-10 22:56:41 +03:00
dev format lua config 2022-12-13 16:42:07 +03:00
examples grammar: add classes 2023-06-16 00:43:30 +03:00
queries grammar: add classes 2023-06-16 00:43:30 +03:00
scripts remove unnecessary choice 2022-12-10 23:09:11 +03:00
src grammar: add util to make blocks and lists 2023-06-16 00:59:42 +03:00
test queries: fixup highlight tests 2023-06-16 00:55:59 +03:00
.gitignore Add structure for container and shapes (#1) 2022-12-09 12:36:31 +03:00
Cargo.toml initial commit 2022-12-04 00:07:26 +03:00
Makefile chore: add help to makefile 2023-01-05 16:19:01 +03:00
README.md doc: update screenshots 2023-06-16 01:42:08 +03:00
binding.gyp Add support of any escape character in text block 2022-12-10 22:56:41 +03:00
flake.lock grammar: add classes 2023-06-16 00:43:30 +03:00
flake.nix grammar: add classes 2023-06-16 00:43:30 +03:00
grammar.js grammar: add util to make blocks and lists 2023-06-16 00:59:42 +03:00
package.json fix highlight 2022-12-07 11:58:45 +03:00
tree-sitter-d2.wasm grammar: add fill-pattern style attribute 2023-03-21 10:25:22 +03:00

README.md

tree-sitter-d2

d2 grammar for tree-sitter.

References:

Highlights

screenshot_1

screenshot_2

Install

Neovim

Using nvim-treesitter, add to your configuration

local parser_config = require("nvim-treesitter.parsers").get_parser_configs()
parser_config.d2 = {
  install_info = {
    url = 'https://git.pleshevski.ru/pleshevskiy/tree-sitter-d2',
    revision = 'main',
    files = { 'src/parser.c', 'src/scanner.cc' },
  },
  filetype = 'd2',
};

Mirrors