Add red color to Operators

not and or operators in python are not colored. This change colors them
in red.
This commit is contained in:
Sergii Golovatiuk 2023-04-07 15:34:15 +02:00 committed by Sidhanth Rathod
parent a6c2adb76f
commit 5aee35792c

View file

@ -61,6 +61,7 @@ M.polish_hl = {
["@string"] = { fg = M.base_30.sun },
["@boolean"] = { fg = M.base_16.base09 },
["@punctuation.bracket"] = { fg = M.base_30.sun },
Operator = { fg = M.base_30.red },
["@operator"] = { fg = M.base_30.red },
}