diff options
author | pommicket <pommicket@gmail.com> | 2022-12-28 17:53:22 -0500 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2022-12-28 17:53:22 -0500 |
commit | 8ef7a72c55e66c097c0130ab17e2062ef75e4723 (patch) | |
tree | 06a83cdddb4179b78292d6c5bb5a30b607551702 /ted.cfg | |
parent | dce1a94e3be8dc4b702d02d901d9b38c6f6a41ce (diff) |
syntax highlighting for JSON, and XML as a separate language
Diffstat (limited to 'ted.cfg')
-rw-r--r-- | ted.cfg | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -194,6 +194,8 @@ Ctrl+Shift+r = :reload-all # 11 Go # 12 ted.cfg # 13 TypeScript +# 14 JSON +# 15 XML # -1 Guess from the file extension (default) Ctrl+Space = :autocomplete @@ -326,12 +328,14 @@ Rust = .rs Python = .py Tex = .tex Markdown = .md -HTML = .html, .php, .xml, .xhtml, .iml +HTML = .html, .php, .xhtml +XML = .xml, .iml Config = .cfg, .toml # ted.cfg has its own syntax highlighting for multiline strings. TedCfg = ted.cfg JavaScript = .js TypeScript = .ts +JSON = .json Java = .java Go = .go |