Added atom config files
This commit is contained in:
parent
7eb39e1d5f
commit
cb38609429
4 changed files with 55 additions and 0 deletions
51
atom/config.cson
Normal file
51
atom/config.cson
Normal 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
0
atom/init.coffee
Normal file
4
atom/snippets.cson
Normal file
4
atom/snippets.cson
Normal file
|
@ -0,0 +1,4 @@
|
|||
'.source.java':
|
||||
'System.out.println()':
|
||||
'prefix': 'sout'
|
||||
'body': 'System.out.println($1);$2'
|
0
atom/styles.less
Normal file
0
atom/styles.less
Normal file
Loading…
Reference in a new issue