2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

個人的なMacセットアップ

Last updated at Posted at 2020-12-07

個人用のメモ

homebrewのインストール

https://brew.sh/index_ja
ターミナル起動して↓をコピペするだけ

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

brew caskでインストールするもの

$ brew install google-chrome --cask
$ brew install iterm2 --cask
$ brew install docker --cask
$ brew install visual-studio-code --cask
$ brew install tableplus --cask
$ brew install macvim --cask
$ brew install kindle --cask
$ brew install spotify --cask
$ brew install drawio --cask

brewでインストールするもの

$ brew install yarn

入力ソース設定

キーボードの環境設定 >
[ユーザ辞書]

  • 英字入力中にスペルを自動変換:オフ
  • 文頭を自動的に大文字にする:オフ

[入力ソース]

  • ライブ変換:オフ
  • タイプミスを修正:オフ

Terminalの設定

zshにpreztoをインストール
https://github.com/sorin-ionescu/prezto

Iterm2にステータスバーを表示
Preferences > Profiles
[Session]

  • Status bar enabled:オン
    スクリーンショット 2020-12-06 22.56.20.png

Preferences > Appearance
[General]

  • Status bar location:Bottom

カラースキーマはここからcloneして設定
https://github.com/aereal/dotfiles

dotfiles/colors/Japanesque/Japanesque.itermcolors

git

GitGub CLIの設定
https://cli.github.com/

vscode

インストールするライブラリ

  • vim
  • Ayu
settings.json
{
  "editor.tabSize": 2,
  "vim.insertModeKeyBindings": [
      {
        "before": ["j", "j"],
        "after": ["<Esc>"]
      }
  ],
"workbench.colorTheme": "Ayu Mirage",
"window.zoomLevel": 0
}
2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?