fix: re-add @punctuation.special (#484)

This commit is contained in:
Amaan Qureshi
2024-01-24 01:38:32 -05:00
committed by GitHub
parent 67c6050e1c
commit b37bc55d10
5 changed files with 13 additions and 0 deletions

View File

@@ -427,6 +427,9 @@ local highlights = {
["@punctuation.delimiter"] = {
fg = "#006a83"
},
["@punctuation.special"] = {
fg = "#006a83",
},
["@string"] = {
link = "String"
},

View File

@@ -427,6 +427,9 @@ local highlights = {
["@punctuation.delimiter"] = {
fg = "#89ddff"
},
["@punctuation.special"] = {
fg = "#89ddff",
},
["@string"] = {
link = "String"
},

View File

@@ -427,6 +427,9 @@ local highlights = {
["@punctuation.delimiter"] = {
fg = "#89ddff"
},
["@punctuation.special"] = {
fg = "#89ddff",
},
["@string"] = {
link = "String"
},

View File

@@ -427,6 +427,9 @@ local highlights = {
["@punctuation.delimiter"] = {
fg = "#89ddff"
},
["@punctuation.special"] = {
fg = "#89ddff",
},
["@string"] = {
link = "String"
},

View File

@@ -273,6 +273,7 @@ function M.setup()
--- Punctuation
["@punctuation.delimiter"] = { fg = c.blue5 }, -- For delimiters ie: `.`
["@punctuation.bracket"] = { fg = c.fg_dark }, -- For brackets and parens.
["@punctuation.special"] = { fg = c.blue5 }, -- For special symbols (e.g. `{}` in string interpolation)
["@markup.list"] = { fg = c.blue5 }, -- For special punctutation that does not fall in the catagories before.
["@markup.list.markdown"] = { fg = c.orange, bold = true },