├── .gitignore
├── CONTRIBUTING.md
├── README.md
├── build
├── builds
├── .gitignore
├── osx-key-mappings.jar
├── styles-only.jar
└── win_linux-keymaps-only.jar
├── osx-key-mappings
├── keymaps
│ ├── Mac OS X 10_5_ Sublime.xml
│ └── OSX_Keymaps.jar
└── options
│ └── keymap.xml
├── screenshot.png
├── styles-only
├── codestyles
│ ├── Default _1_.xml
│ ├── Default _2_.xml
│ └── Default _3_.xml
├── colors
│ ├── Eighties.icls
│ ├── LICENSE
│ ├── README.md
│ ├── SpacePeacock.icls
│ └── Spacegray.icls
└── options
│ ├── code.style.schemes.xml
│ └── colors.scheme.xml
└── win_linux-keymaps-only
├── keymaps
├── Default copy.xml
└── Default for GNOME copy.xml
└── options
└── keymap.xml
/.gitignore:
--------------------------------------------------------------------------------
1 | # Created by https://www.gitignore.io/api/intellij
2 |
3 | ### Intellij ###
4 | # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio
5 |
6 | *.iml
7 |
8 | ## Directory-based project format:
9 | .idea/
10 | # if you remove the above rule, at least ignore the following:
11 |
12 | # User-specific stuff:
13 | # .idea/workspace.xml
14 | # .idea/tasks.xml
15 | # .idea/dictionaries
16 |
17 | # Sensitive or high-churn files:
18 | # .idea/dataSources.ids
19 | # .idea/dataSources.xml
20 | # .idea/sqlDataSources.xml
21 | # .idea/dynamic.xml
22 | # .idea/uiDesigner.xml
23 |
24 | # Gradle:
25 | # .idea/gradle.xml
26 | # .idea/libraries
27 |
28 | # Mongo Explorer plugin:
29 | # .idea/mongoSettings.xml
30 |
31 | ## File-based project format:
32 | *.ipr
33 | *.iws
34 |
35 | ## Plugin-specific files:
36 |
37 | # IntelliJ
38 | /out/
39 |
40 | # mpeltonen/sbt-idea plugin
41 | .idea_modules/
42 |
43 | # JIRA plugin
44 | atlassian-ide-plugin.xml
45 |
46 | # Crashlytics plugin (for Android Studio and IntelliJ)
47 | com_crashlytics_export_strings.xml
48 | crashlytics.properties
49 | crashlytics-build.properties
50 |
51 |
--------------------------------------------------------------------------------
/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 | # Contributing
2 |
3 | Thank you for your interest in contributing.
4 |
5 | ##Getting Started
6 |
7 | Fork, then clone the repo:
8 |
9 | git clone git@github.com:your-username/PHPStorm-SpacePeacock.git
10 |
11 | Make changes to [keymappings](#keymaps) or [styles](#styles)
12 |
13 | Build and test your configuration.
14 |
15 | Commmit and Push to your fork and [submit a pull request][pr].
16 |
17 | [pr]: https://github.com/ShawnMcCool/PHPStorm-SpacePeacock/compare/
18 |
19 | ##Keymaps
20 | Make changes to both `osx-key-mappings` and `win_linux-keymaps-only`.
21 | One key combo change per commit.
22 | Build and test.
23 |
24 | ##Styles
25 | Make changes to the styles xml in `styles-only` and commit changes.
26 | Build and test.
27 |
28 | ##Build
29 | Rebuild from xml using the `build` script in the project root.
30 |
31 | **build**
32 | ```
33 | build [config_folder_name]
34 | ```
35 |
36 | ####config_folder_name
37 | Name of the config folder. This will be used to produce the jar's filename.
38 |
39 | * osx-key-mappings
40 | * styles-only
41 | * win_linux-keymaps-only
42 |
43 | Upon run the build will be output into `builds`
44 | Import and test that the change is accepted.
45 |
46 | **Be sure you have a backup of your original settings in case**
47 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # PHPStorm-SpacePeacock v1.8
2 |
3 | July 28th, 2014
4 |
5 | A Sublime Text keybinding and keymap total-conversion for PHPStorm, RubyMine, IntelliJ IDEA, PyCharm, WebStorm, CLion and ReSharper. With colors based on [SpaceGray](http://kkga.github.io/spacegray/) and [Peacocks in Space](https://github.com/daylerees/colour-schemes/blob/master/PeacocksInSpace.tmTheme) and Sublime Text keymappings.
6 |
7 | 
8 |
9 | Some syntax types have not been updated. I'd be happy to accept pull requests that updated unsupported syntax types to match the php styles. In general though, things work nicely.
10 |
11 | ## Installation
12 |
13 | - Download this project (or just the .jar file) to your computer.
14 |
15 | - In PHPStorm under settings, choose the Darcula theme.
16 |
17 | - In PHPStorm, choose File -> Import Settings, and import the .jar file. (If you don't see the File menu, you may need to open a directory or a project first.)
18 |
19 | - Install the plugin [ColorIDE](http://plugins.jetbrains.com/plugin/7055?pr) to set the colors of the rest of the IDE.
20 |
21 | > If you are using OSX then you need import `PHPStorm-SpacePeacock-osx-key-mappings.jar` after importing the main theme. This will fix your OSX specific keybindings.
22 |
23 | ## Font Rendering
24 |
25 | The font used in the screenshot is Source Code Pro.
26 |
27 | If you are using Linux then you may need to alter your bin/phpstorm.vmoptions (for 32-bit) or bin/phpstorm64.vmoptions (for 64-bit) to remove the useSystemAAFontSettings declaration and replace it with these three lines:
28 |
29 | It's important that you back up your settings and compare the results both ways. In Ubuntu 13.10 these settings improved the display dramatically. In 14.04 these settings actually reduce the quality slightly.
30 |
31 | -Dswing.aatext=true
32 | -Dsun.java2d.xrender=true
33 | -Dawt.useSystemAAFontSettings=gasp
34 |
35 | Use Oracle's Java 8 if you want the best font rendering on Linux possible. More info here: https://intellij-support.jetbrains.com/entries/23455956-Selecting-the-JDK-version-the-IDE-will-run-under
36 |
37 | ## Key Maps
38 |
39 | The key mapping has been updated to better fit Sublime Text conventions. Because I didn't think that `ctrl + shift + alt + t` is a reasonable key combination for something as frequently used as **Refactor This**.
40 |
41 | Additionally, "search everywhere" HAD to be changed because double-tapping left-shift is a two stroke trigger. This is a problem because as you're working the IDE will be busy with analyzing, indexing, and all of the things that IDEs do. If it's busy when you try to hit the first left-shift, then the second left-shift won't pop up the window. As far as user interfaces go, you should never have any lack of confidence that an action will trigger the appropriate response. Once you have that, you have to visually check each operation which is slow and creates cognitive overhead. Consequently, this was changed to `ctrl + p` (also to match Sublime Text) which completely removes this problem.
42 |
43 | `ctrl + p` search everywhere
44 |
45 | `ctrl + r` search methods in current file
46 |
47 | `ctrl + alt + p` change projects
48 |
49 | `ctrl + shift + enter` complete current statement
50 |
51 | `ctrl + alt + enter` refactor this
52 |
53 | `alt + enter` show intended actions (intentions are one of my favorite part JetBrains software)
54 |
55 | `ctrl + n` new thing dialog
56 |
57 | `ctrl + shift + f` format code
58 |
59 | `ctrl + d` select word at cursor, or if a word is selected the select the next occurrence of the word (multiple-cursors)
60 |
61 | `ctrl + t` run tests
62 |
63 | `ctrl + alt + h` show local history
64 |
65 | `ctrl + alt + r` git conflict merge tool
66 |
67 | There are others, as I think of them, I'll add them here.
68 |
69 | ## Changelog
70 |
71 |
72 | ### 1.8
73 |
74 | Separate Styles / Keymaps files
75 | Add Blade Templating styles
76 |
77 | ### 1.7
78 |
79 | `ctrl + t` now runs tests
80 | `ctrl + alt + h` now shows local history
81 | `ctrl + alt + r` now shows the git merge tool
82 |
83 | ### 1.6
84 |
85 | add more Linux-specific documentation
86 | upgrade to support `ctrl + d` mapping
87 |
88 | ### 1.5
89 |
90 | add OSX key mappings
91 | improve various templates
92 |
93 | ### 1.4
94 |
95 | enable smartquotes so that highlighting a string and typing a quote results in a quoted string
96 |
97 | add a bit more contrast to the background for users without fully adobergb gamut compliant monitors
98 |
99 | ### 1.3
100 |
101 | change name to SpacePeacock and rebrand as a total-conversion
102 |
103 | ### 1.2
104 |
105 | change `ctrl + p` from search everywhere to search files (search everywhere is just too insanely slow)
106 |
107 | add `ctrl + shift + p` for search everywhere
108 |
109 | ### 1.1
110 |
111 | add `ctrl + n` keystroke
112 |
--------------------------------------------------------------------------------
/build:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 |
3 | usage="$(basename "$0") config_folder_name -- program to build ideaj settings jars
4 |
5 | where:
6 | config_folder_name
7 | Name of the config folder. This will be used to produce the jar's filename.
8 |
9 | osx-key-mappings
10 | styles-only
11 | win_linux-keymaps-only
12 | "
13 |
14 | if [ -z $1 ] || [ $1 == "-h" ] || [ $1 == "--help" ];
15 | then
16 | echo "$usage"
17 | else
18 | if [ -d $1 ];
19 | then
20 |
21 | touch $1/IntelliJ\ IDEA\ Global\ Settings
22 |
23 | echo "Creating $1.jar in builds"
24 | jar cMf ./builds/$1.jar -C $1 .
25 |
26 | rm $1/IntelliJ\ IDEA\ Global\ Settings
27 | fi
28 | fi
--------------------------------------------------------------------------------
/builds/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
--------------------------------------------------------------------------------
/builds/osx-key-mappings.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ShawnMcCool/PHPStorm-SpacePeacock/840ae8666b1997045c973fcae8afa93cacbf2862/builds/osx-key-mappings.jar
--------------------------------------------------------------------------------
/builds/styles-only.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ShawnMcCool/PHPStorm-SpacePeacock/840ae8666b1997045c973fcae8afa93cacbf2862/builds/styles-only.jar
--------------------------------------------------------------------------------
/builds/win_linux-keymaps-only.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ShawnMcCool/PHPStorm-SpacePeacock/840ae8666b1997045c973fcae8afa93cacbf2862/builds/win_linux-keymaps-only.jar
--------------------------------------------------------------------------------
/osx-key-mappings/keymaps/Mac OS X 10_5_ Sublime.xml:
--------------------------------------------------------------------------------
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 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 |
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
--------------------------------------------------------------------------------
/osx-key-mappings/keymaps/OSX_Keymaps.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ShawnMcCool/PHPStorm-SpacePeacock/840ae8666b1997045c973fcae8afa93cacbf2862/osx-key-mappings/keymaps/OSX_Keymaps.jar
--------------------------------------------------------------------------------
/osx-key-mappings/options/keymap.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ShawnMcCool/PHPStorm-SpacePeacock/840ae8666b1997045c973fcae8afa93cacbf2862/screenshot.png
--------------------------------------------------------------------------------
/styles-only/codestyles/Default _1_.xml:
--------------------------------------------------------------------------------
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 |
--------------------------------------------------------------------------------
/styles-only/codestyles/Default _2_.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/styles-only/codestyles/Default _3_.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/styles-only/colors/Eighties.icls:
--------------------------------------------------------------------------------
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 |
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 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 |
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
128 |
129 |
130 |
131 |
132 |
133 |
134 |
135 |
136 |
137 |
138 |
139 |
140 |
141 |
142 |
143 |
144 |
145 |
146 |
147 |
148 |
149 |
150 |
151 |
152 |
153 |
154 |
155 |
156 |
157 |
158 |
159 |
160 |
161 |
162 |
163 |
164 |
165 |
166 |
167 |
168 |
169 |
170 |
171 |
172 |
173 |
174 |
175 |
176 |
177 |
178 |
179 |
180 |
181 |
182 |
183 |
184 |
185 |
186 |
187 |
188 |
189 |
190 |
191 |
192 |
193 |
194 |
195 |
196 |
197 |
198 |
199 |
200 |
201 |
202 |
203 |
204 |
205 |
206 |
207 |
208 |
209 |
210 |
211 |
212 |
213 |
214 |
215 |
216 |
217 |
218 |
219 |
220 |
221 |
222 |
223 |
224 |
225 |
226 |
227 |
228 |
229 |
230 |
231 |
232 |
233 |
234 |
235 |
236 |
237 |
238 |
239 |
240 |
241 |
242 |
243 |
244 |
245 |
246 |
247 |
248 |
249 |
250 |
251 |
252 |
253 |
254 |
255 |
256 |
257 |
258 |
259 |
260 |
261 |
262 |
263 |
264 |
265 |
266 |
267 |
268 |
269 |
270 |
271 |
272 |
273 |
274 |
275 |
276 |
277 |
278 |
279 |
280 |
281 |
282 |
283 |
284 |
285 |
286 |
287 |
288 |
289 |
290 |
291 |
292 |
293 |
294 |
295 |
296 |
297 |
298 |
299 |
300 |
301 |
302 |
303 |
304 |
305 |
306 |
307 |
308 |
309 |
310 |
311 |
312 |
313 |
314 |
315 |
316 |
317 |
318 |
319 |
320 |
321 |
322 |
323 |
324 |
325 |
326 |
327 |
328 |
329 |
330 |
331 |
332 |
333 |
334 |
335 |
336 |
337 |
338 |
339 |
340 |
341 |
342 |
343 |
344 |
345 |
346 |
347 |
348 |
349 |
350 |
351 |
352 |
353 |
354 |
355 |
356 |
357 |
358 |
359 |
360 |
361 |
362 |
363 |
364 |
365 |
366 |
367 |
368 |
369 |
370 |
371 |
372 |
373 |
374 |
375 |
376 |
377 |
378 |
379 |
380 |
381 |
382 |
383 |
384 |
385 |
386 |
387 |
388 |
389 |
390 |
391 |
392 |
393 |
394 |
395 |
396 |
397 |
398 |
399 |
400 |
401 |
402 |
403 |
404 |
405 |
406 |
407 |
408 |
409 |
410 |
411 |
412 |
413 |
414 |
415 |
416 |
417 |
418 |
419 |
420 |
421 |
422 |
423 |
424 |
425 |
426 |
427 |
428 |
429 |
430 |
431 |
432 |
433 |
434 |
435 |
436 |
437 |
438 |
439 |
440 |
441 |
442 |
443 |
444 |
445 |
446 |
447 |
448 |
449 |
450 |
451 |
452 |
453 |
454 |
455 |
456 |
457 |
458 |
459 |
460 |
461 |
462 |
463 |
464 |
465 |
466 |
467 |
468 |
469 |
470 |
471 |
472 |
473 |
474 |
475 |
476 |
477 |
478 |
479 |
480 |
481 |
482 |
483 |
484 |
485 |
486 |
487 |
488 |
489 |
490 |
491 |
492 |
493 |
494 |
495 |
496 |
497 |
498 |
499 |
500 |
501 |
502 |
503 |
504 |
505 |
506 |
507 |
508 |
509 |
510 |
511 |
512 |
513 |
514 |
515 |
516 |
517 |
518 |
519 |
520 |
521 |
522 |
523 |
524 |
525 |
526 |
527 |
528 |
529 |
530 |
531 |
532 |
533 |
534 |
535 |
536 |
537 |
538 |
539 |
540 |
541 |
542 |
543 |
544 |
545 |
546 |
547 |
548 |
549 |
550 |
551 |
552 |
553 |
554 |
555 |
556 |
557 |
558 |
559 |
560 |
561 |
562 |
563 |
564 |
565 |
566 |
567 |
568 |
569 |
570 |
571 |
572 |
573 |
574 |
575 |
576 |
577 |
578 |
579 |
580 |
581 |
582 |
583 |
584 |
585 |
586 |
587 |
588 |
589 |
590 |
591 |
592 |
593 |
594 |
595 |
596 |
597 |
598 |
599 |
600 |
601 |
602 |
603 |
604 |
605 |
606 |
607 |
608 |
609 |
610 |
611 |
612 |
613 |
614 |
615 |
616 |
617 |
618 |
619 |
620 |
621 |
622 |
623 |
624 |
625 |
626 |
627 |
628 |
629 |
630 |
631 |
632 |
633 |
634 |
635 |
636 |
637 |
638 |
639 |
640 |
641 |
642 |
643 |
644 |
645 |
646 |
647 |
648 |
649 |
650 |
651 |
652 |
653 |
654 |
655 |
656 |
657 |
658 |
659 |
660 |
661 |
662 |
663 |
664 |
665 |
666 |
667 |
668 |
669 |
670 |
671 |
672 |
673 |
674 |
675 |
676 |
677 |
678 |
679 |
680 |
681 |
682 |
683 |
684 |
685 |
686 |
687 |
688 |
689 |
690 |
691 |
692 |
693 |
694 |
695 |
696 |
697 |
698 |
699 |
700 |
701 |
702 |
703 |
704 |
705 |
706 |
707 |
708 |
709 |
710 |
711 |
712 |
713 |
714 |
715 |
716 |
717 |
718 |
719 |
720 |
721 |
722 |
723 |
724 |
725 |
726 |
727 |
728 |
729 |
730 |
731 |
732 |
733 |
734 |
735 |
736 |
737 |
738 |
739 |
740 |
741 |
742 |
743 |
744 |
745 |
746 |
747 |
748 |
749 |
750 |
751 |
752 |
753 |
754 |
755 |
756 |
757 |
758 |
759 |
760 |
761 |
762 |
763 |
764 |
765 |
766 |
767 |
768 |
769 |
770 |
771 |
772 |
773 |
774 |
775 |
776 |
777 |
778 |
779 |
780 |
781 |
782 |
783 |
784 |
785 |
786 |
787 |
788 |
789 |
790 |
791 |
792 |
793 |
794 |
795 |
796 |
797 |
798 |
799 |
800 |
801 |
802 |
803 |
804 |
805 |
806 |
807 |
808 |
809 |
810 |
811 |
812 |
813 |
814 |
815 |
816 |
817 |
818 |
819 |
820 |
821 |
822 |
823 |
824 |
825 |
826 |
827 |
828 |
829 |
830 |
831 |
832 |
833 |
834 |
835 |
836 |
837 |
838 |
839 |
840 |
841 |
842 |
843 |
844 |
845 |
846 |
847 |
848 |
849 |
850 |
851 |
852 |
853 |
854 |
855 |
856 |
857 |
858 |
859 |
860 |
861 |
862 |
863 |
864 |
865 |
866 |
867 |
868 |
869 |
870 |
871 |
872 |
873 |
874 |
875 |
876 |
877 |
878 |
879 |
880 |
881 |
882 |
883 |
884 |
885 |
886 |
887 |
888 |
889 |
890 |
891 |
892 |
893 |
894 |
895 |
896 |
897 |
898 |
899 |
900 |
901 |
902 |
903 |
904 |
905 |
906 |
907 |
908 |
909 |
910 |
911 |
912 |
913 |
914 |
915 |
916 |
917 |
918 |
919 |
920 |
921 |
922 |
923 |
924 |
925 |
926 |
927 |
928 |
929 |
930 |
931 |
932 |
933 |
934 |
935 |
936 |
937 |
938 |
939 |
940 |
941 |
942 |
943 |
944 |
945 |
946 |
947 |
948 |
949 |
950 |
951 |
952 |
953 |
954 |
955 |
956 |
957 |
958 |
959 |
960 |
961 |
962 |
963 |
964 |
965 |
966 |
967 |
968 |
969 |
970 |
971 |
972 |
973 |
974 |
975 |
976 |
977 |
978 |
979 |
980 |
981 |
982 |
983 |
984 |
985 |
986 |
987 |
988 |
989 |
990 |
991 |
992 |
993 |
994 |
995 |
996 |
997 |
998 |
999 |
1000 |
1001 |
1002 |
1003 |
1004 |
1005 |
1006 |
1007 |
1008 |
1009 |
1010 |
1011 |
1012 |
1013 |
1014 |
1015 |
1016 |
1017 |
1018 |
1019 |
1020 |
1021 |
1022 |
1023 |
1024 |
1025 |
1026 |
1027 |
1028 |
1029 |
1030 |
1031 |
1032 |
1033 |
1034 |
1035 |
1036 |
1037 |
1038 |
1039 |
1040 |
1041 |
1042 |
1043 |
1044 |
1045 |
1046 |
1047 |
1048 |
1049 |
1050 |
1051 |
1052 |
1053 |
1054 |
1055 |
1056 |
1057 |
1058 |
1059 |
1060 |
1061 |
1062 |
1063 |
1064 |
1065 |
1066 |
1067 |
1068 |
1069 |
1070 |
1071 |
1072 |
1073 |
1074 |
1075 |
1076 |
1077 |
1078 |
1079 |
1080 |
1081 |
1082 |
1083 |
1084 |
1085 |
1086 |
1087 |
1088 |
1089 |
1090 |
1091 |
1092 |
1093 |
1094 |
1095 |
1096 |
1097 |
1098 |
1099 |
1100 |
1101 |
1102 |
1103 |
1104 |
1105 |
1106 |
1107 |
1108 |
1109 |
1110 |
1111 |
1112 |
1113 |
1114 |
1115 |
1116 |
1117 |
1118 |
1119 |
1120 |
1121 |
1122 |
1123 |
1124 |
1125 |
1126 |
1127 |
1128 |
1129 |
1130 |
1131 |
1132 |
1133 |
1134 |
1135 |
1136 |
1137 |
1138 |
1139 |
1140 |
1141 |
1142 |
1143 |
1144 |
1145 |
1146 |
1147 |
1148 |
1149 |
1150 |
1151 |
1152 |
1153 |
1154 |
1155 |
1156 |
1157 |
1158 |
1159 |
1160 |
1161 |
1162 |
1163 |
1164 |
1165 |
1166 |
1167 |
1168 |
1169 |
1170 |
1171 |
1172 |
1173 |
1174 |
1175 |
1176 |
1177 |
1178 |
1179 |
1180 |
1181 |
1182 |
1183 |
1184 |
1185 |
1186 |
1187 |
1188 |
1189 |
1190 |
1191 |
1192 |
1193 |
1194 |
1195 |
1196 |
1197 |
1198 |
1199 |
1200 |
1201 |
1202 |
1203 |
1204 |
1205 |
1206 |
1207 |
1208 |
1209 |
1210 |
1211 |
1212 |
1213 |
1214 |
1215 |
1216 |
1217 |
1218 |
1219 |
1220 |
1221 |
1222 |
1223 |
1224 |
1225 |
1226 |
1227 |
1228 |
1229 |
1230 |
1231 |
1232 |
1233 |
1234 |
1235 |
1236 |
1237 |
--------------------------------------------------------------------------------
/styles-only/colors/LICENSE:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) 2013 Abhimanyu Sharma
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy of
6 | this software and associated documentation files (the "Software"), to deal in
7 | the Software without restriction, including without limitation the rights to
8 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9 | the Software, and to permit persons to whom the Software is furnished to do so,
10 | subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21 |
--------------------------------------------------------------------------------
/styles-only/colors/README.md:
--------------------------------------------------------------------------------
1 | phpStorm SpaceGray color scheme
2 | ==================
3 |
4 | phpStorm SpaceGray color is based on SpaceGray theme http://kkga.github.io/spacegray for Sublime Text
5 |
6 | ## SpaceGray Colors ##
7 |
8 | ### php Example ###
9 | 
10 |
11 | ### HTML Example ###
12 | 
13 |
14 | ----------
15 |
16 | ## Eighties Colors ##
17 |
18 | ### php ###
19 | 
20 |
21 | ### HTML ###
22 |
23 | 
24 | ## Installation ##
25 |
26 | - Place the `Spacegray.icls` and `Eighties.icls` file in your phpStorm folder paths are given below.
27 | - Then go to `File` -> `Settings` -> `Editor` -> `Colors & Fonts`
28 | - Select the `Spacegray` or `Eighties` theme from the drop down list
29 | - Restart the phpStorm
30 |
31 |
32 | ### Ubuntu Linux ###
33 | cd ~/.WebIde60/config/colors
34 |
35 | ### Mac OS X ###
36 |
37 | cd ~/Library/Preferences/WebIde60/colors/
38 |
39 | ### Windows ###
40 |
41 | c:/Users/USERNAME/.WebIde60/config/colors
42 |
43 | # Contribute #
44 |
45 | Feel free to contribute
46 |
--------------------------------------------------------------------------------
/styles-only/colors/SpacePeacock.icls:
--------------------------------------------------------------------------------
1 |
2 |
3 |