(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| " This must be first, because it changes other options as a side effect. | |
| set nocompatible | |
| " On Windows use '.vim' instead of 'vimfiles' to make sync easier | |
| let s:ms_win = (has('win16') || has('win32') || has('win64')) | |
| if s:ms_win | |
| set runtimepath=$HOME/.vim,$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after,$HOME/.vim/after | |
| set shell=/bin/sh | |
| endif |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.