From 1ebb6040e100cf011446ab3b19702ee5db012193 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Borja=20Paz=20Rodr=C3=ADguez?= Date: Sat, 29 Apr 2023 02:15:59 +0200 Subject: [PATCH] feat(operators): remove italics from some operators --- themes/dark.codely-theme-color-theme.json | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/themes/dark.codely-theme-color-theme.json b/themes/dark.codely-theme-color-theme.json index 451a08e..b24a56a 100644 --- a/themes/dark.codely-theme-color-theme.json +++ b/themes/dark.codely-theme-color-theme.json @@ -1283,6 +1283,19 @@ "settings": { "foreground": "#8EC07C" } + }, + { + "name": "Operators without italics", + "scope": [ + "keyword.operator.assignment", + "keyword.operator.bitwise", + "keyword.operator.type", + "keyword.operator.logical", + "keyword.operator.arithmetic" + ], + "settings": { + "fontStyle": "" + } } ] -} \ No newline at end of file +}