Skip to content

Instantly share code, notes, and snippets.

View incheon's full-sized avatar

Tomohiro Imaizumi incheon

View GitHub Profile
@incheon
incheon / Boxstarter.md
Last active August 29, 2015 14:19 — forked from ikkou/Boxstarter.md

Windowsでも開発環境を一瞬で構築したい!

未開封のWindows PCと一緒に手渡された環境構築マニュアル、1つ1つ手作業で進めるだけで初日が終わってしまった、そんな時間の無駄を省く為のドキュメント。

コマンドプロンプトを起動

WindowsRを同時に押して、cmdと入力、Enterを押下

chocolateyのインストール

@incheon
incheon / switch.vim
Last active September 5, 2015 15:12 — forked from alpaca-tc/gist:6696152
function! s:separate_defenition_to_each_filetypes(ft_dictionary) "{{{
let result = {}
for [filetypes, value] in items(a:ft_dictionary)
for ft in split(filetypes, ",")
if !has_key(result, ft)
let result[ft] = []
endif
call extend(result[ft], copy(value))