From 793bb44bb2864c3e75492ca21075d0342e49c3d5 Mon Sep 17 00:00:00 2001 From: Justin Palmer Date: Thu, 31 Jan 2013 12:51:36 -0800 Subject: [PATCH 1/9] copy over the .atom template directory instead of individual files --- Rakefile | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/Rakefile b/Rakefile index 2a14471ac..ad33f5a86 100644 --- a/Rakefile +++ b/Rakefile @@ -90,13 +90,7 @@ task "create-dot-atom" do end `rm -rf "#{DOT_ATOM_PATH}"` - `mkdir "#{DOT_ATOM_PATH}"` - - `cp "#{dot_atom_template_path}/user.coffee" "#{DOT_ATOM_PATH}"` - `cp "#{dot_atom_template_path}/user.css" "#{DOT_ATOM_PATH}"` - `cp -r "#{dot_atom_template_path}/packages" "#{DOT_ATOM_PATH}"` - `cp -r "#{ATOM_SRC_PATH}/themes" "#{DOT_ATOM_PATH}"` - `cp "#{ATOM_SRC_PATH}/vendor/themes/IR_Black.tmTheme" "#{DOT_ATOM_PATH}/themes"` + `cp -r #{dot_atom_template_path} #{DOT_ATOM_PATH}` end desc "Clone default bundles into vendor/bundles directory" From 4cd220012197dcacc7a41f9c2c5d78f8151b88f9 Mon Sep 17 00:00:00 2001 From: Justin Palmer Date: Thu, 31 Jan 2013 12:52:02 -0800 Subject: [PATCH 2/9] create a default config.json file with sane defaults --- .atom/config.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .atom/config.json diff --git a/.atom/config.json b/.atom/config.json new file mode 100644 index 000000000..3f2c5de32 --- /dev/null +++ b/.atom/config.json @@ -0,0 +1,11 @@ +{ + "editor": { + + }, + "core": { + "themes": [ + "Atom - Dark", + "IR_Black" + ] + } +} \ No newline at end of file From a57ac08238b5b567c37c63d34b095ef56c1b6b0f Mon Sep 17 00:00:00 2001 From: Justin Palmer Date: Thu, 31 Jan 2013 12:58:38 -0800 Subject: [PATCH 3/9] make the default font size 12px --- .atom/config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.atom/config.json b/.atom/config.json index 3f2c5de32..89e425883 100644 --- a/.atom/config.json +++ b/.atom/config.json @@ -1,6 +1,6 @@ { "editor": { - + "fontSize": 12 }, "core": { "themes": [ From 6be772d617a2c03fc613cf31a5d0083fee5f178a Mon Sep 17 00:00:00 2001 From: Justin Palmer Date: Thu, 31 Jan 2013 12:58:52 -0800 Subject: [PATCH 4/9] add themes directory to .atom template --- .atom/themes/Readme.md | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 .atom/themes/Readme.md diff --git a/.atom/themes/Readme.md b/.atom/themes/Readme.md new file mode 100644 index 000000000..e69de29bb From 31aa1a947128635dcd084ffba7b021d95a3b91d4 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Fri, 1 Feb 2013 11:11:52 -0800 Subject: [PATCH 5/9] Add a little documentation --- .atom/packages/Readme.md | 1 + .atom/themes/Readme.md | 1 + 2 files changed, 2 insertions(+) diff --git a/.atom/packages/Readme.md b/.atom/packages/Readme.md index e69de29bb..540b6949c 100644 --- a/.atom/packages/Readme.md +++ b/.atom/packages/Readme.md @@ -0,0 +1 @@ +All packages in this directory will be automatically loaded diff --git a/.atom/themes/Readme.md b/.atom/themes/Readme.md index e69de29bb..dbedd5e13 100644 --- a/.atom/themes/Readme.md +++ b/.atom/themes/Readme.md @@ -0,0 +1 @@ +All themes in this directory will be automatically loaded From 0484ecde7d106bcb3e4bc71f80fee196360cacd9 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Fri, 1 Feb 2013 11:12:58 -0800 Subject: [PATCH 6/9] Screaming README --- .atom/packages/{Readme.md => README.md} | 0 .atom/themes/{Readme.md => README.md} | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename .atom/packages/{Readme.md => README.md} (100%) rename .atom/themes/{Readme.md => README.md} (100%) diff --git a/.atom/packages/Readme.md b/.atom/packages/README.md similarity index 100% rename from .atom/packages/Readme.md rename to .atom/packages/README.md diff --git a/.atom/themes/Readme.md b/.atom/themes/README.md similarity index 100% rename from .atom/themes/Readme.md rename to .atom/themes/README.md From a51ccdee0660cd03854323cce8bfca04aeb31b1b Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Fri, 1 Feb 2013 11:13:22 -0800 Subject: [PATCH 7/9] Use valid css comment --- .atom/user.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.atom/user.css b/.atom/user.css index f53057581..d63ad257e 100644 --- a/.atom/user.css +++ b/.atom/user.css @@ -1,8 +1,8 @@ -// User styles +/* User styles */ .tree-view { } .editor { -} \ No newline at end of file +} From 919ecb5a5659f20f8535ec10187a5f5759975abe Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Fri, 1 Feb 2013 11:15:30 -0800 Subject: [PATCH 8/9] Add trailing newline --- .atom/config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.atom/config.json b/.atom/config.json index 89e425883..61420466f 100644 --- a/.atom/config.json +++ b/.atom/config.json @@ -8,4 +8,4 @@ "IR_Black" ] } -} \ No newline at end of file +} From 5285ee2b762b353eb44c49019cbfe8b373731783 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Fri, 1 Feb 2013 11:17:12 -0800 Subject: [PATCH 9/9] 16 is the new 12 --- .atom/config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.atom/config.json b/.atom/config.json index 61420466f..f6b59770b 100644 --- a/.atom/config.json +++ b/.atom/config.json @@ -1,6 +1,6 @@ { "editor": { - "fontSize": 12 + "fontSize": 16 }, "core": { "themes": [