Skip to content

Instantly share code, notes, and snippets.

@brandonsueur
Created August 4, 2018 20:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brandonsueur/ddca85036b8cd4b6656ea98bdc113cc1 to your computer and use it in GitHub Desktop.
Save brandonsueur/ddca85036b8cd4b6656ea98bdc113cc1 to your computer and use it in GitHub Desktop.
πŸ“– My configuration Atom editor
"*":
"atom-easy-jsdoc":
beta: true
useReturns: true
core:
disabledPackages: [
"spell-check"
]
ignoredNames: [
".git"
".hg"
".svn"
".DS_Store"
"._*"
"Thumbs.db"
"desktop.ini"
"node_modules/"
"package-lock.json"
]
telemetryConsent: "limited"
themes: [
"one-dark-ui"
"nv-dark-syntax"
]
titleBar: "custom-inset"
editor:
fontFamily: "\"Operator Mono\""
fontSize: 15
showInvisibles: true
tabLength: 4
emmet:
useEmmetComments: true
"exception-reporting":
userId: "2ac1ba59-93dd-4c18-9545-7d2b0a061679"
"file-icons": {}
"language-babel":
autoIndentJSX: true
"linter-ui-default": {}
"one-dark-ui":
hideDockButtons: true
react:
enabledForAllJavascriptFiles: true
"structure-view":
AutoscrollFromSource: true
"tree-view":
hideIgnoredNames: true
hideVcsIgnoredFiles: true
wakatime:
apikey: "Enter your api key..."
welcome:
showOnStartup: false
".coffee.jsx.source":
editor:
autoIndentOnPaste: true
showIndentGuide: true
softWrapAtPreferredLineLength: false
tabLength: 2
".js.jsx.source":
editor:
showIndentGuide: true
tabLength: 2
# Your keymaps
'atom-text-editor[data-grammar="source js jsx"]:not([mini])':
'tab': 'emmet:expand-abbreviation-with-tab'
'atom-text-editor':
'cmd-p': 'command-palette:toggle'
# Your snippets
'.source.js':
'Console log':
'prefix': 'cl'
'body': 'console.log($1)'
atom-text-editor {
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
font-family: "Operator Mono";
font-weight: 300;
line-height: 1.7;
}
atom-text-editor.editor .lines .cursor-line .syntax--keyword.syntax--operator {
text-rendering: auto;
}
atom-text-editor.editor .syntax--comment {
font-style: italic;
font-weight: 300;
}
atom-text-editor.editor {
.syntax--storage.syntax--type.syntax--function.syntax--arrow,
.syntax--keyword.syntax--operator:not(.accessor),
.syntax--punctuation.syntax--definition {
font-family: "Fira Code";
}
.syntax--string.syntax--quoted,
.syntax--string.syntax--regexp {
-webkit-font-feature-settings: "liga" off, "calt" off;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment