Added atom config files

This commit is contained in:
Jake Howard 2016-02-08 11:02:35 +00:00
parent 7eb39e1d5f
commit cb38609429
4 changed files with 55 additions and 0 deletions

51
atom/config.cson Normal file
View File

@ -0,0 +1,51 @@
"*":
"atom-alignment": {}
"autoclose-html": {}
"color-picker":
abbreviateValues: true
preferredFormat: "HEX"
uppercaseColorValues: true
core:
packagesWithKeymapsDisabled: [
"merge-conflicts"
]
themes: [
"one-dark-ui"
"monokai"
]
editor:
fontSize: 15
invisibles:
tab: "-"
scrollPastEnd: true
showIndentGuide: true
tabType: "soft"
"exception-reporting":
userId: "78a3a259-396e-edee-6010-e8552cf30255"
"glowing-cursor":
glowColor:
red: 255
green: 127
blue: 0
alpha: 1
innerColor:
red: 255
green: 127
blue: 0
alpha: 1
linter:
errorPanelHeight: 22
"linter-eslint":
eslintRulesDir: "node_modules/eslint-config/"
"linter-flake8":
ignoreErrorCodes: [
"E128"
"E501"
]
"merge-conflicts": {}
minimap:
plugins:
"highlight-selected": true
"tree-view": {}
welcome:
showOnStartup: false

0
atom/init.coffee Normal file
View File

4
atom/snippets.cson Normal file
View File

@ -0,0 +1,4 @@
'.source.java':
'System.out.println()':
'prefix': 'sout'
'body': 'System.out.println($1);$2'

0
atom/styles.less Normal file
View File