From 00445b27e10289f310effc68f74d23ee3c57e16d Mon Sep 17 00:00:00 2001 From: Yohei Yasukawa Date: Tue, 15 Oct 2024 12:35:24 +0900 Subject: [PATCH] Enable semantic highlighting by Ruby LSP --- .devcontainer/devcontainer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 769277a..4519b6b 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -60,7 +60,8 @@ "editor.insertSpaces": true, // Use spaces, not tabs, to avoid errors for learners "editor.renderWhitespace": "none", "[ruby]": { - "editor.defaultFormatter": "castwide.solargraph" + "editor.defaultFormatter": "castwide.solargraph", + "editor.semanticHighlighting.enabled": true, // Enable semantic highlighting }, "files.associations": { "*.erb": "erb" }, "emmet.includeLanguages": { "erb": "html" },