diff --git a/.gitignore b/.gitignore index 8b10bae..fac95e7 100644 --- a/.gitignore +++ b/.gitignore @@ -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 + diff --git a/atom/.atom/config.cson b/atom/.atom/config.cson new file mode 100644 index 0000000..d1e0470 --- /dev/null +++ b/atom/.atom/config.cson @@ -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' + ] diff --git a/atom/.atom/init.coffee b/atom/.atom/init.coffee new file mode 100644 index 0000000..4d10e77 --- /dev/null +++ b/atom/.atom/init.coffee @@ -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) diff --git a/atom/.atom/keymap.cson b/atom/.atom/keymap.cson new file mode 100644 index 0000000..bce80b7 --- /dev/null +++ b/atom/.atom/keymap.cson @@ -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' +# diff --git a/atom/.atom/packages/README.md b/atom/.atom/packages/README.md new file mode 100644 index 0000000..540b694 --- /dev/null +++ b/atom/.atom/packages/README.md @@ -0,0 +1 @@ +All packages in this directory will be automatically loaded diff --git a/atom/.atom/snippets.cson b/atom/.atom/snippets.cson new file mode 100644 index 0000000..9578993 --- /dev/null +++ b/atom/.atom/snippets.cson @@ -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' +# diff --git a/atom/.atom/styles.less b/atom/.atom/styles.less new file mode 100644 index 0000000..d37163b --- /dev/null +++ b/atom/.atom/styles.less @@ -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 { + +}