Kaynağa Gözat

add misc Atom IDE things

Kyle P Davis 10 yıl önce
ebeveyn
işleme
8b14b864bc
2 değiştirilmiş dosya ile 93 ekleme ve 0 silme
  1. 8 0
      install_atom.sh
  2. 85 0
      install_atom_plugins.sh

+ 8 - 0
install_atom.sh

@@ -0,0 +1,8 @@
+#!/bin/bash
+set -e
+set -x
+mkdir -p ~/Applications/
+cd ~/Applications/
+curl -sL -o Atom.zip https://atom.io/download/mac
+unzip Atom.zip
+rm Atom.zip

+ 85 - 0
install_atom_plugins.sh

@@ -0,0 +1,85 @@
+#!/bin/bash
+# An installable list of the Atom IDE plugins that I use.
+# To get "apm" tool: open Atom and click "Atom->Install Shell Commands"
+apm install "$(cat<<-EOF
+Sublime-Style-Column-Selection
+Tern
+Zen
+angularjs
+ask-stack
+atom-beautify
+atom-bootstrap3
+atom-cli-diff
+atom-color-highlight
+atom-html-preview
+atom-lint
+atomatigit
+atomic-rest
+center-screen
+change-case
+coffee-refactor
+color-picker
+copy-as-rtf
+coverage
+docblockr
+editorconfig
+file-icons
+filesize
+git-blame
+git-difftool
+git-log
+git-plus
+git-tab-status
+go-plus
+hex
+highlight-cov
+highlight-line
+highlight-selected
+js-refactor
+language-svg
+linter
+linter-clang
+linter-coffeelint
+linter-cpplint
+linter-csslint
+linter-javac
+linter-js-yaml
+linter-jshint
+linter-pep8
+linter-perl
+linter-pylint
+linter-scss-lint
+linter-shellcheck
+linter-write-good
+linter-xmllint
+live-archive
+markdown-format
+merge-conflicts
+mocha-test-runner
+nbsp-detect
+node-debugger
+open-in-sourcetree
+open-last-project
+open-terminal-here
+pain-split
+pdf-view
+pipe
+project-colorize
+recent-files
+refactor
+regex-railroad-diagram
+revert-buffer
+script
+sort-lines
+stacktrace
+svg-preview
+task-list
+term2
+test-jumper
+test-status
+todo-show
+trailing-spaces
+tualo-git-context
+turbo-javascript
+EOF
+)"