Merge pull request #220 from github/better-dot-atom

A better dot atom
This commit is contained in:
Justin Palmer 2013-02-01 11:26:02 -08:00
commit eb349eca69
6 changed files with 16 additions and 9 deletions

11
.atom/config.json Normal file
View File

@ -0,0 +1,11 @@
{
"editor": {
"fontSize": 16
},
"core": {
"themes": [
"Atom - Dark",
"IR_Black"
]
}
}

1
.atom/packages/README.md Normal file
View File

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

1
.atom/themes/README.md Normal file
View File

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

View File

@ -1,8 +1,8 @@
// User styles
/* User styles */
.tree-view {
}
.editor {
}
}

View File

@ -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"