itamae-plugin-recipe-atom
Plugin to support the Atom for Itamae
Installation
Add this line to your application's Gemfile:
gem 'itamae-plugin-recipe-atom'And then execute:
$ bundle
Or install it yourself as:
$ gem install itamae-plugin-recipe-atom
Usage
Recipe
your recipe example
include_recipe 'atom::config'
include_recipe 'atom::package'Node
case was an example the yaml
your node example
atom:
install_packages:
- monokai
- dash
- file-icons
- highlight-selected
- highlight-column
- highlight-line
- japanese-wrap
- recent-files
- sublime-style-column-selection
- ask-stack
- show-ideographic-space
- jumpy
- symbols-tree-view
- autocomplete-plus
- autocomplete-emojis
- autocomplete-snippets
- autocomplete-paths
- linter
- linter-coffeelint
- linter-erb
- linter-rubocop
- linter-haml
- linter-ruby
- linter-shellcheck
- git-grep
- git-diff
- git-log
- git-control
- term2
- script
- rspec
- web-view
- serverspec-snippets
- language-rspec
- vim-mode
configs:
config: /path/to/config.cson
keymap: /path/to/keymap.cson
snippets: /path/to/snippets.cson
styles: /path/to/styles.lessDescription of Option
-
install_packages : run the
apm install XXXXX. To specify the packages you want to add an array -
configs
-
config:
~/.atom/config.csonreplace the specified file.Original file back up as~/.atom/config.cson.bk. -
keymap:
~/.atom/keymap.csonreplace the specified file.Original file back up as~/.atom/keymap.cson.bk. -
snippets:
~/.atom/snippets.csonreplace the specified file.Original file back up as~/.atom/snippets.cson.bk. -
styles:
~/.atom/styles.lessreplace the specified file.Original file back up as~/.atom/styles.less.bk.
-
config:
Contributing
- Fork it ( https://github.com/fukuiretu/itamae-plugin-recipe-atom/fork )
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create a new Pull Request