Skip to content

Instantly share code, notes, and snippets.

View mkalygin's full-sized avatar

Michael Kalygin mkalygin

View GitHub Profile
@mkalygin
mkalygin / Preferences.sublime-settings
Last active August 29, 2015 14:07
Sublime Text User Preferences
{
"always_show_minimap_viewport": true,
"auto_match_enabled": false,
"bold_folder_labels": true,
"caret_extra_width": 1,
"caret_style": "phase",
"color_scheme": "Packages/User/Solarized-ocean (SL).tmTheme",
"draw_minimap_border": true,
"draw_white_space": "all",
"ensure_newline_at_eof_on_save": true,
echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc
. ~/.bashrc
mkdir ~/local
mkdir ~/node-latest-install
cd ~/node-latest-install
curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1
./configure --prefix=~/local
make install # ok, fine, this step probably takes more than 30 seconds...
curl https://www.npmjs.org/install.sh | sh