Last active
January 8, 2017 05:24
-
-
Save sinhrks/80a6ab4d725cc004de4a25b4e2d6dda6 to your computer and use it in GitHub Desktop.
Macbook設定
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#.bashrcを読み込む | |
if [ -f ~/.bashrc ] ; then | |
. ~/.bashrc | |
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#.bashrc | |
# colorize git branch | |
git_branch() { | |
echo $(git branch --no-color 2>/dev/null | sed -ne "s/^\* \(.*\)$/\1/p") | |
} | |
PS1='——\n\[\033[36m\]\u\[\033[0m\]\[\033[32m\]\w\[\033[0m\]:\[\033[35m\]$(git_branch)\[\033[0m\] $ ' | |
export PATH="$HOME/anaconda/bin:$HOME/.cargo/bin:$PATH" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[user] | |
name = sinhrks | |
email = [email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- 日本語入力 | |
- http://www.sin-space.com/entry/2016/09/24/082558 | |
- スペルチェック無効化(キーボード > ユーザー辞書) | |
- すべてのキーをファンクションキーとして使用 (キーボード > キーボード) | |
- エディタ | |
- https://atom.io/ | |
- https://atom.io/packages/hydrogen | |
- https://atom.io/packages/file-icons | |
- https://atom.io/packages/minimap | |
- https://atom.io/packages/minimap-autohide | |
- https://atom.io/packages/atom-beautify | |
- https://atom.io/packages/autocomplete-python | |
- https://atom.io/packages/python-tools | |
- https://atom.io/packages/racer | |
- GitHub | |
- https://help.github.com/articles/adding-a-new-ssh-key-to-your-github-account/ | |
- Python | |
- https://www.continuum.io/downloads | |
- R | |
- https://www.rstudio.com/products/rstudio/download3/ | |
- Rust | |
- https://www.rustup.rs/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment