update atom config

This commit is contained in:
Sami Samhuri 2014-11-14 14:10:09 -08:00
parent f2d0f686cb
commit 1a09204ab9
7 changed files with 92 additions and 1 deletions

3
.gitignore vendored
View file

@ -5,8 +5,9 @@ emacs.d/auto-save-list/.saves*
*.pyc
*.cache
irb_history
atom/compile-cache
atom/.atom
atom/.node-gyp
atom/storage
atom/packages
netrc

21
atom/.atom/config.cson Normal file
View file

@ -0,0 +1,21 @@
'exception-reporting':
'userId': 'f0959d78-91dc-bebd-b8b1-bb94795b687f'
'release-notes':
'viewedVersion': '0.69.0'
'welcome':
'showOnStartup': false
'metrics':
'userId': 'e6c49abe1bf808251a71b7c40e037c6011a379fb'
'editor':
'fontSize': 14
'fontFamily': 'Menlo'
'core':
'themes': [
'atom-dark-ui'
'atom-dark-syntax'
]
'ignoredNames': [
'.git'
'.svn'
'.DS_Store'
]

14
atom/.atom/init.coffee Normal file
View file

@ -0,0 +1,14 @@
# Your init script
#
# Atom will evaluate this file each time a new window is opened. It is run
# after packages are loaded/activated and after the previous editor state
# has been restored.
#
# An example hack to make opened Markdown files always be soft wrapped:
#
# path = require 'path'
#
# atom.workspaceView.eachEditorView (editorView) ->
# editor = editorView.getEditor()
# if path.extname(editor.getPath()) is '.md'
# editor.setSoftWrap(true)

18
atom/.atom/keymap.cson Normal file
View file

@ -0,0 +1,18 @@
# Your keymap
#
# Atom keymaps work similarly to stylesheets. Just as stylesheets use selectors
# to apply styles to elements, Atom keymaps use selectors to associate
# keystrokes with events in specific contexts.
#
# You can create a new keybinding in this file by typing "key" and then hitting
# tab.
#
# Here's an example taken from Atom's built-in keymap:
#
# '.editor':
# 'enter': 'editor:newline'
#
# 'body':
# 'ctrl-P': 'core:move-up'
# 'ctrl-p': 'core:move-down'
#

View file

@ -0,0 +1 @@
All packages in this directory will be automatically loaded

15
atom/.atom/snippets.cson Normal file
View file

@ -0,0 +1,15 @@
# Your snippets
#
# Atom snippets allow you to enter a simple prefix in the editor and hit tab to
# expand the prefix into a larger code block with templated values.
#
# You can create a new snippet in this file by typing "snip" and then hitting
# tab.
#
# An example CoffeeScript snippet to expand log to console.log:
#
# '.source.coffee':
# 'Console log':
# 'prefix': 'log'
# 'body': 'console.log $1'
#

21
atom/.atom/styles.less Normal file
View file

@ -0,0 +1,21 @@
/*
* Your Stylesheet
*
* This stylesheet is loaded when Atom starts up and is reloaded automatically
* when it is changed.
*
* If you are unfamiliar with LESS, you can read more about it here:
* http://www.lesscss.org
*/
.tree-view {
}
.editor {
}
.editor .cursor {
}