{ "name": "central-asm", "displayName": "Central(ASM)", "description": "Syntax highlighting for Central(ASM)", "version": "1.0.0", "engines": { "vscode": "^1.95.0" }, "categories": [ "Programming Languages" ], "contributes": { "languages": [ { "id": "central-asm", "aliases": [ "Central(ASM)", "central-asm" ], "extensions": [ ".s", ".S", ".m", ".M" ], "configuration": "./language-configuration.json" } ], "grammars": [ { "language": "central-asm", "scopeName": "source.central-asm", "path": "./syntaxes/central-asm.tmLanguage.json" } ], "configurationDefaults": { "[central-asm]": { "editor.guides.indentation": false, "editor.detectIndentation": false, "editor.insertSpaces": true, "editor.rulers": [ 2, 4, 120 ] } } } }