From 1f717b9d6d299b32d7c3047065d88ccd2d061ca1 Mon Sep 17 00:00:00 2001 From: Joseph Montanaro Date: Thu, 11 Sep 2025 10:50:04 -0400 Subject: [PATCH] add theme overrides to zed for Python docstrings and operators --- dot_config/zed/settings.json | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/dot_config/zed/settings.json b/dot_config/zed/settings.json index df3ec22..01e42ce 100644 --- a/dot_config/zed/settings.json +++ b/dot_config/zed/settings.json @@ -50,5 +50,22 @@ }, "file_types": { "Markdown": ["svx"] - } + }, + "experimental.theme_overrides": { + // use with One Dark Pro theme + // "editor.document_highlight.read_background": "#74ade81a", + "syntax": { + "operator": { + "color": "#fa428f" + }, + "string.doc": { + "color": "#a2a3a7" + } + // use with One Dark Pro theme + // "punctuation.special": { + // "color": "#b1574b", + // }, + } + } + }