├── .gitignore ├── 404.html ├── API.md ├── AnimatedGifs.md ├── Apm.md ├── AtomEvents.md ├── BestPractices.md ├── CONTRIBUTING.md ├── CoffeescriptPrimer.md ├── ConfigurationGuides ├── BestPractices.md └── DefiningWorkflowCommandsWithInitScripts.md ├── CustomizingAtomWithInit.md ├── CustomizingAtomWithLess.md ├── DefaultKeybindings.md ├── FAQ.md ├── Hyde-LICENSE ├── InitDotCoffee.md ├── IntroducingAtom.md ├── LICENSE ├── PackageGuides ├── BestPractices.md ├── PackageBasics.md └── README.md ├── PerformanceIssues.md ├── Placeholder.md ├── README.md ├── TechStack.md ├── TestingPackages.md ├── ThemeGuides ├── BestPractices.md └── README.md ├── TipsAndTricks.md ├── WorkflowGuides └── README.md ├── _config.yml ├── _includes ├── head.html └── sidebar.html ├── _layouts ├── default.html ├── page.html └── post.html ├── _posts └── 2014-03-12-Work-In-Progress.md ├── about.md ├── adding-atom-to-dotfiles.md ├── atom.xml ├── atom ├── init.coffee ├── keymap.cson ├── snippets.cson └── styles.less ├── blog └── index.html ├── bower.json ├── bower_components └── font-awesome-css │ ├── css │ ├── font-awesome.css │ └── font-awesome.min.css │ └── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ └── fontawesome-webfont.woff ├── configuring-atom.md ├── developing-packages.md ├── developing-themes.md ├── index.html └── public ├── apple-touch-icon-144-precomposed.png ├── css ├── hyde.css ├── main.css ├── poole.css └── syntax.css └── favicon.ico /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/.gitignore -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/404.html -------------------------------------------------------------------------------- /API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/API.md -------------------------------------------------------------------------------- /AnimatedGifs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/AnimatedGifs.md -------------------------------------------------------------------------------- /Apm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/Apm.md -------------------------------------------------------------------------------- /AtomEvents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/AtomEvents.md -------------------------------------------------------------------------------- /BestPractices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/BestPractices.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CoffeescriptPrimer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/CoffeescriptPrimer.md -------------------------------------------------------------------------------- /ConfigurationGuides/BestPractices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/ConfigurationGuides/BestPractices.md -------------------------------------------------------------------------------- /ConfigurationGuides/DefiningWorkflowCommandsWithInitScripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/ConfigurationGuides/DefiningWorkflowCommandsWithInitScripts.md -------------------------------------------------------------------------------- /CustomizingAtomWithInit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/CustomizingAtomWithInit.md -------------------------------------------------------------------------------- /CustomizingAtomWithLess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/CustomizingAtomWithLess.md -------------------------------------------------------------------------------- /DefaultKeybindings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/DefaultKeybindings.md -------------------------------------------------------------------------------- /FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/FAQ.md -------------------------------------------------------------------------------- /Hyde-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/Hyde-LICENSE -------------------------------------------------------------------------------- /InitDotCoffee.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/InitDotCoffee.md -------------------------------------------------------------------------------- /IntroducingAtom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/IntroducingAtom.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/LICENSE -------------------------------------------------------------------------------- /PackageGuides/BestPractices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/PackageGuides/BestPractices.md -------------------------------------------------------------------------------- /PackageGuides/PackageBasics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/PackageGuides/PackageBasics.md -------------------------------------------------------------------------------- /PackageGuides/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/PackageGuides/README.md -------------------------------------------------------------------------------- /PerformanceIssues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/PerformanceIssues.md -------------------------------------------------------------------------------- /Placeholder.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: Placeholer 4 | --- 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/README.md -------------------------------------------------------------------------------- /TechStack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/TechStack.md -------------------------------------------------------------------------------- /TestingPackages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/TestingPackages.md -------------------------------------------------------------------------------- /ThemeGuides/BestPractices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/ThemeGuides/BestPractices.md -------------------------------------------------------------------------------- /ThemeGuides/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/ThemeGuides/README.md -------------------------------------------------------------------------------- /TipsAndTricks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/TipsAndTricks.md -------------------------------------------------------------------------------- /WorkflowGuides/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/WorkflowGuides/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/_config.yml -------------------------------------------------------------------------------- /_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/_includes/head.html -------------------------------------------------------------------------------- /_includes/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/_includes/sidebar.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/_layouts/page.html -------------------------------------------------------------------------------- /_layouts/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/_layouts/post.html -------------------------------------------------------------------------------- /_posts/2014-03-12-Work-In-Progress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/_posts/2014-03-12-Work-In-Progress.md -------------------------------------------------------------------------------- /about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/about.md -------------------------------------------------------------------------------- /adding-atom-to-dotfiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/adding-atom-to-dotfiles.md -------------------------------------------------------------------------------- /atom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/atom.xml -------------------------------------------------------------------------------- /atom/init.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/atom/init.coffee -------------------------------------------------------------------------------- /atom/keymap.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/atom/keymap.cson -------------------------------------------------------------------------------- /atom/snippets.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/atom/snippets.cson -------------------------------------------------------------------------------- /atom/styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/atom/styles.less -------------------------------------------------------------------------------- /blog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/blog/index.html -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/bower.json -------------------------------------------------------------------------------- /bower_components/font-awesome-css/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/bower_components/font-awesome-css/css/font-awesome.css -------------------------------------------------------------------------------- /bower_components/font-awesome-css/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/bower_components/font-awesome-css/css/font-awesome.min.css -------------------------------------------------------------------------------- /bower_components/font-awesome-css/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/bower_components/font-awesome-css/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /bower_components/font-awesome-css/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/bower_components/font-awesome-css/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /bower_components/font-awesome-css/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/bower_components/font-awesome-css/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /bower_components/font-awesome-css/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/bower_components/font-awesome-css/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /bower_components/font-awesome-css/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/bower_components/font-awesome-css/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /configuring-atom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/configuring-atom.md -------------------------------------------------------------------------------- /developing-packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/developing-packages.md -------------------------------------------------------------------------------- /developing-themes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/developing-themes.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/index.html -------------------------------------------------------------------------------- /public/apple-touch-icon-144-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/public/apple-touch-icon-144-precomposed.png -------------------------------------------------------------------------------- /public/css/hyde.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/public/css/hyde.css -------------------------------------------------------------------------------- /public/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/public/css/main.css -------------------------------------------------------------------------------- /public/css/poole.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/public/css/poole.css -------------------------------------------------------------------------------- /public/css/syntax.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/public/css/syntax.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbranchaud/splitting-atoms/HEAD/public/favicon.ico --------------------------------------------------------------------------------