- quiver
- xcode
- tot(メモアプリ)
% xcode-select --install
TODO: asdf というのを試してみたい https://asdf-vm.com/
% cd provisioning/
% sh ./1setup_anyenv.sh
- python3.8の最新を入れる
- pythonの実行環境はpipenvで構築する
% pyenv install 3.8.1
% pyenv global 3.8.1
% pyenv rehash
% pip install pipenv
- pipenvの環境を作るため、Pipfile関連をインストールする
% cd provisioning/
% pipenv install --ignore-pipfile
% pipenv run ansible-playbook -i hosts _1homebrew.yml
# 上記で各種ツールがインストールされる
# 必要に応じてインストールしたアプリの設定を行う
# 特にDropboxセットアップする
% pipenv run ansible-playbook -i hosts _2zsh.yml
% pipenv run ansible-playbook -i hosts _3symlink.yml
% pipenv run ansible-playbook -i hosts _4vimplug.yml
brew bundle
# 更新はしたくない場合
brew bundle --no-upgrade% go get -u github.com/mattn/memo
% go get -u github.com/Code-Hex/pget/cmd/pget # 高速ダウンローダー
- iterm2のディレクトリを Preferences で読み込む
- 読み込んじゃえば以下の設定は特に何もしなくていいかも
~/dotfiles/iterm2/
hybrid.itermcolorsというファイルをpreferences->Profileから読み込むPreferences->General->Window->Native full screen windowsのチェックを外すPreferences->Appearance->General->Auto-hide menu bar in non-native fullscreenのチェックを外すPreference->Profiles->Text->Ambiguous characters are double-widthのチェックを入れないPreference->Profiles->Text-> FontJetBrains Mono, Non-ASCII FontRictyを設定するGeneral->Selection->Applications in terminal may access clipboardを設定する
設定値を確認する
% defaults read NSGlobalDomain InitialKeyRepeat
% defaults read NSGlobalDomain KeyRepeat
設定する値を小さくしたほうが早くなる
% defaults write -g InitialKeyRepeat -int 12 # normal minimum is 15 (225 ms)
% defaults write -g KeyRepeat -int 2 # normal minimum is 2 (30 ms)