summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2022-05-13 13:52:26 +0200
committerLaurenz <laurmaedje@gmail.com>2022-05-13 13:52:26 +0200
commit3e9c63d685a6ff05a72e5a07d40216ff0ac6ae32 (patch)
tree765a5ff149a96ffef3f2d9a031f0c3976d808946 /src
parent673d4e33e9818b0b1e3e6b99351d8408200349bf (diff)
Underline headings in raw theme
Diffstat (limited to 'src')
-rw-r--r--src/library/text/raw.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/text/raw.rs b/src/library/text/raw.rs
index d5a3aa95..6124359e 100644
--- a/src/library/text/raw.rs
+++ b/src/library/text/raw.rs
@@ -173,7 +173,7 @@ static THEME: Lazy<Theme> = Lazy::new(|| Theme {
scopes: vec![
item("markup.bold", None, Some(FontStyle::BOLD)),
item("markup.italic", None, Some(FontStyle::ITALIC)),
- item("markup.heading, entity.name.section", None, Some(FontStyle::BOLD)),
+ item("markup.heading, entity.name.section", None, Some(FontStyle::BOLD | FontStyle::UNDERLINE)),
item("markup.raw", Some("#818181"), None),
item("markup.list", Some("#8b41b1"), None),
item("comment", Some("#8a8a8a"), None),