You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+17-13
Original file line number
Diff line number
Diff line change
@@ -229,10 +229,8 @@ A popular Theme is the [Soda Theme](https://github.com/buymeasoda/soda-theme). T
229
229
230
230
Then go to **Sublime Text 2 > Preferences > Settings - User** and add the following two lines:
231
231
232
-
```json
233
-
"theme": "Soda Dark.sublime-theme",
234
-
"soda_classic_tabs": true
235
-
```
232
+
"theme": "Soda Dark.sublime-theme",
233
+
"soda_classic_tabs": true
236
234
237
235
Restart Sublime Text for all changes to take affect (**Note**: on the Mac, closing all windows doesn't close the application, you need to hit **Cmd+Q**).
238
236
@@ -278,8 +276,10 @@ Executable scripts from Python packages you install will be put in `/usr/local/s
278
276
279
277
And add these lines to `.path`:
280
278
281
-
PATH=/usr/local/share/python:$PATH
282
-
export PATH
279
+
```bash
280
+
PATH=/usr/local/share/python:$PATH
281
+
export PATH
282
+
```
283
283
284
284
Save the file and open a new terminal to take the new `$PATH` into account (everytime you open a terminal, `.bash_profile` gets loaded).
285
285
@@ -368,7 +368,9 @@ You can also customize the font it uses:
368
368
369
369
And since I'm lazy and I don't want to type or copy & paste that all the time, I'm going to create an alias for it. Create a `.extra` text file in your home directory with `$ subl ~/.extra` (I've set up `.bash_profile` to load `.extra`), and add the following line:
370
370
371
-
alias ipy='ipython qtconsole --ConsoleWidget.font_family="Consolas" --ConsoleWidget.font_size=13'
371
+
```bash
372
+
alias ipy='ipython qtconsole --ConsoleWidget.font_family="Consolas" --ConsoleWidget.font_size=13'
373
+
```
372
374
373
375
Open a fresh terminal. Now when you run `$ ipy`, it will launch the QT Console with your configured options.
374
376
@@ -437,10 +439,6 @@ In terms of a GUI client for MySQL, I'm used to the official and free [MySQL Wor
437
439
438
440
You can find the MySQL Workbench download [here](http://www.mysql.com/downloads/workbench/). (**Note**: It will ask you to sign in, you don't need to, just click on "No thanks, just start my download!" at the bottom.)
439
441
440
-
## Projects folder
441
-
442
-
This really depends on how you want to organize your files, but I like to put all my version-controlled projects in `~/Projects`. Other documents I may have, or things not yet under version control, I like to put in `~/Dropbox` (if you have Dropbox installed), or `~/Documents`.
443
-
444
442
## Node.js
445
443
446
444
Install [Node.js](http://nodejs.org/) with Homebrew:
@@ -452,8 +450,10 @@ The formula also installs the [npm](https://npmjs.org/) package manager. However
452
450
453
451
To do so, add this line to your `~/.path` file, before the `export PATH` line:
454
452
455
-
PATH=/usr/local/share/npm/bin:$PATH
456
-
453
+
```bash
454
+
PATH=/usr/local/share/npm/bin:$PATH
455
+
```
456
+
457
457
Open a new terminal for the `$PATH` changes to take effect.
458
458
459
459
Node modules are installed locally in the `node_modules` folder of each project by default, but there are at least two that are worth installing globally. Those are [CoffeeScript](http://coffeescript.org/) and [Grunt](http://gruntjs.com/):
@@ -485,6 +485,10 @@ To uninstall a package:
485
485
486
486
$ npm uninstall <package>
487
487
488
+
## Projects folder
489
+
490
+
This really depends on how you want to organize your files, but I like to put all my version-controlled projects in `~/Projects`. Other documents I may have, or things not yet under version control, I like to put in `~/Dropbox` (if you have Dropbox installed), or `~/Documents`.
0 commit comments