Skip to content

Instantly share code, notes, and snippets.

@sinhrks
Last active January 8, 2017 05:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sinhrks/80a6ab4d725cc004de4a25b4e2d6dda6 to your computer and use it in GitHub Desktop.
Save sinhrks/80a6ab4d725cc004de4a25b4e2d6dda6 to your computer and use it in GitHub Desktop.
Macbook設定
#.bashrcを読み込む
if [ -f ~/.bashrc ] ; then
. ~/.bashrc
fi
#.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"
[user]
name = sinhrks
email = sinhrks@gmail.com
- 日本語入力
- 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