-
Notifications
You must be signed in to change notification settings - Fork 0
/
init_atom_packages.sh
88 lines (70 loc) · 2.15 KB
/
init_atom_packages.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# Disable the "exit immediately" option
set +e
# Awesome UI with file Icons
apm install seti-ui
apm install monokai-seti
# basic atom setup
apm install atom-beautify
# different indentation styles
apm install auto-detect-indentation
# easy to open recent files and folders from the “File” menu
apm install open-recent
# Color previews for color strings in any file
apm install pigments
# adds a handy customizable toolbar in the UI
apm install tool-bar
# really easy to open up your GIT projects
apm install git-projects
# Sublime like multi cursor
apm install multi-cursor
# Edit CSV files using a table editor
apm install tablr
# Lots of monospace fonts
apm install fonts
# Generic bottom dock for quick panel development
apm install bottom-dock
# A terminal package for Atom,
apm install terminal-plus
# TODO-show reveals comments scattered through your project containing keywords such as TODO, FIXME and CHANGED
apm install todo-show
# displaying a condensed view of your code for quick navigation.
apm install minimap
apm install minimap-linter
apm install minimap-pigments
# Automates closing of HTML Tags
apm install autoclose-html
# Get linter powers
apm install linter
apm install linter-htmlhint
apm install linter-csslint
apm install linter-jshint
apm install linter-eslint
apm install linter-sass-lint
apm install linter-json-lint
apm install linter-flow
apm install linter-php
apm install linter-phpmd
apm install linter-javac
# aligner packages
apm install aligner
apm install aligner-css
apm install aligner-javascript
apm install aligner-php
apm install aligner-scss
apm install aligner-php
# intelligent autocomplete with type information.
apm install atom-ternjs
# plugin auto-completes node modules as well as file paths
apm install autocomplete-modules
apm install autocomplete-java
# type aware autocomplete, Ctrl+Click to go to definition,
apm install nuclide
# php setup
# Run the 'PHP Coding Standards Fixer' within Atom
apm install php-cs-fixer
# Hyperclick provider for PHP. Open file when classname is clicked
apm install php-hyperclick
# Postman for atom
apm install rest-client
# Make your Java development experience bareable.
apm install java-plus