Last active
November 23, 2016 14:04
-
-
Save mischah/598ede0b3efefba3edee00f0451fcf63 to your computer and use it in GitHub Desktop.
Current Atom settings
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
"*": | |
"atom-beautify": | |
general: | |
analytics: false | |
js: {} | |
core: | |
disabledPackages: [ | |
"minimap-highlight-selected" | |
"minimap" | |
"atom-ternjs" | |
"color-picker" | |
"whitespace" | |
"styleguide" | |
"language-javascript-jsx" | |
] | |
ignoredNames: [ | |
".git" | |
".hg" | |
".svn" | |
".DS_Store" | |
"._*" | |
"Thumbs.db" | |
"node_modules" | |
"libs" | |
"server" | |
"dist" | |
] | |
packagesWithKeymapsDisabled: [ | |
"sublime-block-comment" | |
"atom-beautify" | |
] | |
projectHome: "/Users/mkuehnel/Documents/projects" | |
telemetryConsent: "no" | |
themes: [ | |
"one-dark-ui" | |
"twilight" | |
] | |
useCustomTitleBar: true | |
"duotone-dark-syntax": | |
color: | |
uno: "#941100" | |
editor: | |
fontFamily: "SourceCodePro-medium" | |
invisibles: {} | |
scrollPastEnd: true | |
showInvisibles: true | |
"exception-reporting": | |
userId: "68bc8fb7-e772-c685-ead2-88d963d81c76" | |
"file-icons": {} | |
"isotope-ui": | |
backgroundGradient: true | |
linter: {} | |
"linter-eslint": {} | |
"markdown-preview": | |
breakOnSingleNewline: true | |
useGitHubStyle: true | |
minimap: | |
plugins: | |
"highlight-selected": true | |
"highlight-selectedDecorationsZIndex": 0 | |
"one-dark-ui": | |
layoutMode: "Compact" | |
"project-manager": | |
ignoreDirectories: "node_modules, vendor, libs" | |
savePathsRelativeToHome: true | |
"project-plus": | |
autoDiscover: false | |
notifications: false | |
showPath: true | |
"save-session": | |
dataSaveFolder: "/Users/mkuehnel/.atom/packages/save-session/projects" | |
project: "/Users/mkuehnel/Documents/Projects/dhl-reboot-felix" | |
treeSize: 476 | |
windowHeight: 805 | |
windowWidth: 1438 | |
windowX: 2 | |
windowY: 22 | |
"todo-show": | |
sortBy: "Type" | |
welcome: | |
showOnStartup: false | |
"source.gfm": | |
whitespace: | |
removeTrailingWhitespace: false | |
"text.md": | |
whitespace: | |
removeTrailingWhitespace: false |
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
# Recreates key bindings from Sublime Text | |
'.platform-darwin': | |
'ctrl-s': 'tree-view:toggle' | |
'atom-text-editor:not([mini])': | |
'cmd-\\': 'sublime-block-comment:toggle' | |
'cmd-shift-H': 'atom-beautify:beautify-editor' |
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
// Decent bracket matcher | |
atom-text-editor::shadow .bracket-matcher .region { | |
border-bottom: 1px solid #ffd900; | |
// background-color: #ffd900; | |
opacity: 0.5; | |
} | |
// Font size adaptions for my favorite theme | |
.theme-one-dark-ui { | |
.tab-bar { | |
font-size: 12px; | |
} | |
// .tree-view { font-size: 13px; } | |
// .status-bar { font-size: 12px; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment