Skip to content

Instantly share code, notes, and snippets.

@tkdn
Last active April 9, 2021 19:25
Show Gist options
  • Save tkdn/0dae7e74d07e558efd56242ca044baa3 to your computer and use it in GitHub Desktop.
Save tkdn/0dae7e74d07e558efd56242ca044baa3 to your computer and use it in GitHub Desktop.
ReMac
tap "fujiwara/tap"
tap "getsentry/tools"
tap "homebrew/bundle"
tap "homebrew/cask"
tap "homebrew/cask-versions"
tap "homebrew/core"
tap "homebrew/services"
tap "libero18/mycask"
tap "olleolleolle/adr-tools"
tap "rcmdnk/file"
tap "rhysd/tweet-app", "https://github.com/rhysd/tweet-app"
tap "stns/stns_passwd"
brew "libyaml"
brew "readline"
brew "ansible"
brew "autoconf"
brew "automake"
brew "awscli"
brew "awslogs"
brew "libpng"
brew "gettext"
brew "glib"
brew "[email protected]"
brew "cairo"
brew "circleci"
brew "cloc"
brew "composer"
brew "coreutils"
brew "libevent"
brew "curl"
brew "deno"
brew "diff-so-fancy"
brew "giflib"
brew "libtool"
brew "pkg-config"
brew "gobject-introspection"
brew "jpeg"
brew "libass"
brew "fish"
brew "unixodbc"
brew "freetds"
brew "fzf"
brew "gh"
brew "ghq"
brew "gist"
brew "git"
brew "gnu-getopt"
brew "git-now"
brew "gnu-sed"
brew "gnupg"
brew "httpd"
brew "hub"
brew "imagemagick"
brew "jq"
brew "libpq"
brew "libxml2"
brew "libxslt"
brew "mas"
brew "mkcert"
brew "nvm"
brew "openjdk"
brew "peco"
brew "[email protected]"
brew "pngcheck"
brew "pngquant"
brew "pstree"
brew "pyenv"
brew "rbenv"
brew "scrcpy"
brew "starship"
brew "tfenv"
brew "tig"
brew "tmux"
brew "tree"
brew "unzip"
brew "watch"
brew "wget"
brew "yarn"
brew "fujiwara/tap/aswrap"
brew "getsentry/tools/sentry-cli"
brew "olleolleolle/adr-tools/adr_tools"
cask "alfred"
cask "android-file-transfer"
cask "android-studio"
cask "appcleaner"
cask "authy"
cask "background-music"
cask "charles"
cask "clipy"
cask "docker"
cask "firefox"
cask "google-chrome-canary"
cask "google-japanese-ime"
cask "hyperswitch"
cask "iterm2"
cask "java"
cask "karabiner-elements"
cask "loopback"
cask "macdown"
cask "marshallofsound-google-play-music-player"
cask "scroll-reverser"
cask "sketch"
cask "skitch"
cask "tweet"
cask "visual-studio-code"
mas "EasyRes", id: 688211836
mas "GarageBand", id: 682658836
mas "GIPHY CAPTURE", id: 668208984
mas "Keynote", id: 409183694
mas "LadioCast", id: 411213048
mas "Numbers", id: 409203825
mas "Pages", id: 409201541
mas "Slack", id: 803453959
mas "Table Tool", id: 1122008420
mas "Tomato One", id: 907364780
mas "WordService", id: 899972312

手順

  1. Chrome install
  2. Homebrew install
  3. brew bundle
  4. Some softwares install from App Store
  5. System Preferences
  6. fish shell
  7. Powerline fonts install 8. dotfile clone
  8. Git setup
  9. chore

1. Chrome install

手で。

2. Homebrew install

https://brew.sh/index_ja

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

3. brew bundle

Brew Bundleの使い方

$ brew tap Homebrew/bundle
$ curl -O https://gist.githubusercontent.com/tkdn/0dae7e74d07e558efd56242ca044baa3/raw/224369157b5cb19b0ed5a0d244588af5d3f26649/Brewfile && brew bundle

4. App store

mas でインストールしない場合

  1. XCode install
  2. Slack install

5. System Preferences

  1. スクロール ネイティブオフ
  2. Spotlight のショートカットを Alfred に置き換え

6. fish shell

fisher

https://github.com/fisherman/fisherman/wiki/%E6%97%A5%E6%9C%AC%E8%AA%9E

$ curl -sL https://git.io/fisher | source && fisher install jorgebucaran/fisher

login shell

$ sudo vi /etc/shells # /usr/local/bin/fish 追加
$ chsh -s /usr/local/bin/fish

install fisher plugins

$ fisher install decors/fish-ghq
$ fisher install jethrokuan/fzf
$ fisher oh-my-fish/theme-bobthefish

7. Powerline fonts install

$ ghq get powerline/fonts
$ sh ~/.ghq/github.com/powerline/fonts/install.sh

※ iTerm2 ほか必要なフォント設定はよしなに。 Noto mono for Powerline など

8. dotfile clone

$ ghq get tkdn/dotfiles
$ repo # tkdn/dotfiles
$ cp -r . ~/

9. Git setup

キー作成

$ cd ~/.ssh
$ ssh-keygen -t rsa -C "[email protected]" -f id_rsa
$ ssh-keygen -t rsa -C "[email protected]" -f private_rsa
$ pbcopy < id_rsa.pub
$ pbcopy < private_rsa.pub

GitHub 登録

https://github.com/settings/keys

config

$ vi ~/.ssh/config
Host github.com
  User git
  Port 22
  HostName github.com
  IdentityFile ~/.ssh/id_rsa
  TCPKeepAlive yes
  IdentitiesOnly yes
Host github.com.private
  User git
  Port 22
  HostName github.com
  IdentityFile ~/.ssh/private_rsa
  TCPKeepAlive yes
  IdentitiesOnly yes
$ ssh -T github.com
$ ssh -T github.com.private

10. chore

Android Studio

path 通すのでセットアップしておく。

@tkdn
Copy link
Author

tkdn commented Mar 24, 2018

HyperSwitch

2018-03-24 22 15 11

2018-03-24 22 20 42

2018-03-24 22 21 17

@tkdn
Copy link
Author

tkdn commented Mar 25, 2018

@tkdn
Copy link
Author

tkdn commented Sep 3, 2019

iTerm 設定

image

@tkdn
Copy link
Author

tkdn commented Sep 3, 2019

@tkdn
Copy link
Author

tkdn commented Jun 2, 2020

@tkdn
Copy link
Author

tkdn commented Apr 9, 2021

以前のアップデートの様子

@tkdn
Copy link
Author

tkdn commented Apr 9, 2021

Background Music

2021/04/10 時点で Big Sur で問題があるため、パッチをインストールする必要がある。

kyleneideck/BackgroundMusic: Background Music, a macOS audio utility: automatically pause your music, set individual apps' volumes and record system audio.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment