This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# How to preserve multiple YAML lines with newlines (for example, to pass through a Markdown filter in Jekyll) | |
# via: http://stackoverflow.com/questions/3790454/in-yaml-how-do-i-break-a-string-over-multiple-lines | |
key: |+ | |
Hello. | |
World. | |
# Output if processed with Markdown: | |
# '<p>hello</p><p>world</p>' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// include in user `styles.less` “your stylesheet” | |
@color-status-modified: hsl(22, 50%, 44%); | |
@color-status-added: hsl(144, 50%, 35%); | |
@color-status-ignored: hsl(200, 3%, 55%); | |
// Custom git override styles for Atom tree view | |
.tree-view { | |
.status-modified, | |
.list-tree li.list-nested-item.status-modified > .list-item { |
OlderNewer