Last active
April 28, 2017 00:44
-
-
Save garrows/4af6a0469156ed66840815492e6c513b to your computer and use it in GitHub Desktop.
Atom Configs
This file contains 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
Community Packages (15) /Users/glen/.atom/packages | |
├── api-blueprint-preview@0.7.0 | |
├── atom-beautify@0.29.22 | |
├── busy-signal@1.3.0 | |
├── editorconfig@2.2.2 | |
├── git-diff-details@1.4.0 | |
├── git-plus@7.5.0 | |
├── intentions@1.1.2 | |
├── language-api-blueprint@1.0.2 | |
├── lcov-info@0.12.0 | |
├── linter@2.1.4 | |
├── linter-eslint@8.1.6 | |
├── linter-js-standard@3.9.0 | |
├── linter-jsonlint@1.3.0 | |
├── linter-ui-default@1.2.3 | |
└── standard-formatter@2.8.0 |
This file contains 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
'body': | |
'ctrl-tab': 'pane:show-next-item' | |
'ctrl-tab ^ctrl': 'unset!' | |
'ctrl-shift-tab': 'pane:show-previous-item' | |
'ctrl-shift-tab ^ctrl': 'unset!' | |
'ctrl-alt-n': 'linter-eslint:fix-file' |
This file contains 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
'.source.js': | |
'console.log': | |
'prefix': 'logj' | |
'body': 'console.log(JSON.stringify(${1:obj}, null, \' \'));$2' | |
'if(error)': | |
'prefix': 'ife' | |
'body': 'if (${2:error}) return ${1:callback}(${2:error});' | |
'argument last': | |
'prefix': 'larg' | |
'body': 'var done = Array.from(arguments).find(arg => typeof arg === \'function\')' |
This file contains 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
.panes::after { | |
content: ""; | |
position: fixed; | |
top: 0; | |
right: 0; | |
left: 0; | |
bottom: 0; | |
pointer-events: none; | |
background: url("https://source.unsplash.com/random"); | |
// background: url("https://source.unsplash.com/category/nature"); //Nature category | |
// background: url("http://thecatapi.com/api/images/get?format=src&size=full&type=jpg,png"); //Cats | |
// background: url("http://thecatapi.com/api/images/get?format=src&size=full&type=gif"); //Cats | |
background-size: cover; | |
opacity: 0.1; | |
transform: translate3d(0,0,0); | |
-webkit-transform: translate3d(0,0,0); | |
backface-visibility: hidden; | |
-webkit-backface-visibility: hidden; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment