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
| .btn { | |
| background-image: linear-gradient(#537178, #537178); | |
| box-shadow:0px px 0px 0px rgba(255,254,255,0.60), inset 0px 0px 0px 1px rgba(255,254,255,0.50); | |
| color: #BDD6DB; | |
| } | |
| .tree-view { | |
| .entry.directory.status-modified > .header, | |
| .entry.file.status-modified { | |
| color: orange; |
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
| # Github Theme | |
| # GitGutter | |
| # SidebarEnhancements | |
| # Alignment | |
| # SASS | |
| { | |
| "bold_folder_labels": true, | |
| "color_scheme": "Packages/Github Color Theme/GitHub.tmTheme", |
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
| " ----------------------------------------------------------------------------- | |
| " VIM Configuration for Janus (https://github.com/carlhuda/janus.git) | |
| " Lars Smit [email protected] | |
| " ----------------------------------------------------------------------------- | |
| " ----------------------------------------------------------------------------- | |
| " Basics | |
| " ----------------------------------------------------------------------------- | |
| set encoding=utf8 |
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
| def compare_yaml_hash(cf1, cf2, context = []) | |
| cf1.each do |key, value| | |
| unless cf2.key?(key) | |
| puts "Missing key : #{key} in path #{context.join(".")}" | |
| next | |
| end | |
| value2 = cf2[key] | |
| if (value.class != value2.class) |
OlderNewer