Skip to content

Commit

Permalink
Convert to YAML anchors and aliases
Browse files Browse the repository at this point in the history
  • Loading branch information
danielbayley committed Oct 31, 2023
1 parent df7697a commit aa3a9c6
Showing 1 changed file with 32 additions and 32 deletions.
64 changes: 32 additions & 32 deletions dracula.yaml
Original file line number Diff line number Diff line change
@@ -1,38 +1,38 @@
user: 159 # cyan
group: 231 # foreground
user: &cyan 159
group: &foreground 231
permission:
read: 183 # blue
write: 212 # magenta
exec: 159 # cyan
exec-sticky: 159 # cyan
no-access: 210 # red
octal: 212 # magenta
acl: 183 # blue
context: 159 # cyan
read: &blue 183 # purple
write: &magenta 212
exec: *cyan
exec-sticky: *cyan
no-access: &red 210
octal: *magenta
acl: *blue
context: *cyan
date:
hour-old: 146 # comment 20% lighter
day-old: 103 # comment
older: 60 # current line
hour-old: &comment-20 146 # 20% lighter
day-old: &comment 103
older: &current-line 60
size:
none: 60 # current line
small: 120 # green
medium: 222 # orange
large: 210 # red
none: *current-line
small: &green 120
medium: &orange 222
large: *red
inode:
valid: 231 # foreground
invalid: 210 # red
valid: *foreground
invalid: *red
links:
valid: 159 # cyan
invalid: 210 # red
tree-edge: 183 # blue
valid: *cyan
invalid: *red
tree-edge: *blue
git-status:
default: 103 # comment
unmodified: 103 # comment
ignored: 60 # current line
new-in-index: 120 # green
new-in-workdir: 120 # green
typechange: 222 # orange
deleted: 210 # red
renamed: 229 # yellow
modified: 222 # orange
conflicted: 210 # red
default: *comment
unmodified: *comment
ignored: *current-line
new-in-index: *green
new-in-workdir: *green
typechange: *orange
deleted: *red
renamed: &yellow 229
modified: *orange
conflicted: *red

0 comments on commit aa3a9c6

Please sign in to comment.