Skip to content

Commit 758c88c

Browse files
committed
Move node.js up one
1 parent ef7d0ae commit 758c88c

File tree

1 file changed

+17
-13
lines changed

1 file changed

+17
-13
lines changed

README.md

+17-13
Original file line numberDiff line numberDiff line change
@@ -229,10 +229,8 @@ A popular Theme is the [Soda Theme](https://github.com/buymeasoda/soda-theme). T
229229

230230
Then go to **Sublime Text 2 > Preferences > Settings - User** and add the following two lines:
231231

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
236234

237235
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**).
238236

@@ -278,8 +276,10 @@ Executable scripts from Python packages you install will be put in `/usr/local/s
278276

279277
And add these lines to `.path`:
280278

281-
PATH=/usr/local/share/python:$PATH
282-
export PATH
279+
```bash
280+
PATH=/usr/local/share/python:$PATH
281+
export PATH
282+
```
283283

284284
Save the file and open a new terminal to take the new `$PATH` into account (everytime you open a terminal, `.bash_profile` gets loaded).
285285

@@ -368,7 +368,9 @@ You can also customize the font it uses:
368368

369369
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:
370370

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+
```
372374

373375
Open a fresh terminal. Now when you run `$ ipy`, it will launch the QT Console with your configured options.
374376

@@ -437,10 +439,6 @@ In terms of a GUI client for MySQL, I'm used to the official and free [MySQL Wor
437439

438440
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.)
439441

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-
444442
## Node.js
445443

446444
Install [Node.js](http://nodejs.org/) with Homebrew:
@@ -452,8 +450,10 @@ The formula also installs the [npm](https://npmjs.org/) package manager. However
452450

453451
To do so, add this line to your `~/.path` file, before the `export PATH` line:
454452

455-
PATH=/usr/local/share/npm/bin:$PATH
456-
453+
```bash
454+
PATH=/usr/local/share/npm/bin:$PATH
455+
```
456+
457457
Open a new terminal for the `$PATH` changes to take effect.
458458

459459
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:
485485

486486
$ npm uninstall <package>
487487

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`.
491+
488492
## Todo
489493

490494
- Ruby

0 commit comments

Comments
 (0)