開発界隈では自分のエディター設定をプロジェクトのコーディング規約に合わせる作業ってのがあります(コーディング規約が無い場合も多々ある)。
そこでこのEditorConfig (http://editorconfig.org/) をお勧め。
これを使ってみたんだけど、プログラマーの世界って繋がってるなぁ、って思っちゃったり。そんな大層なことじゃないかも知れないけれど。
editorconfig.org
root = true
[*]
indent_style = space
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
max_line_length = 80
[.py]
max_line_length = 79
[*.{rb,js}]
indent_size = 2