LoginSignup
1
1

More than 5 years have passed since last update.

Macを購入したので設定をメモしておく

Last updated at Posted at 2018-03-18

前提

macbook 12インチ 2017

インストールしたもの

0 セキュリティソフト
   まずはここからスタートです

 1 karabiner
キー設定変更ツールUSキーのmacを買ったので日本語慣れした手に合わせて変更してしました。
   右のcommandをかなに変更し、左を英数に変更
提供元 https://pqrs.org/osx/karabiner/
記事  https://beadored.com/the-original-karabiner-elements-command-switching-eisuu-kana/

 2 Xcode
   iOS用のIDEです
   提供元 App Store

 3 Home brew
   パッケージを管理し、インストールが楽になります
   Command Line Tools for Xcode
提供元 コマンドラインから書きコマンドを入力する
        xcode-select --install
記事  https://qiita.com/_daisuke/items/d3b2477d15ed2611a058

   Home brew
提供元 https://brew.sh/index_ja
        →コマンドラインから下記コマンドを入力
         /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

 4 エディター
dein.vim
   起動が速いのと使っている人が多そうなので使用しました。
提供元 https://github.com/Shougo/dein.vim
   記事 https://qiita.com/tomo62/items/57a9cc3abf92be5ea119

 5 pyenv
   pythonを切り替えるために入れました。
提供元 https://github.com/pyenv/pyenv

   記事 https://qiita.com/koooooo/items/b21d87ffe2b56d0c589b

6 anaconda
   pythonのパッケージです。まとめて入れるのに楽なのでanacondaにしました。
提供元 https://www.anaconda.com/download/#macos
   実際のインストールはpyenv経由のためコマンドラインからインストールする
    pyenv install anaconda3-4.3.1

7 vimプラグイン
   Vimはそれだけでコーディングするのも地獄なのでplug-inを設定し、適宜使えるようにしました。
   起動時のplug-in
   'Shougo/dein.vim'
   'Shougo/vimproc.vim'
   'Shougo/neosnippet-snippets'
   'ervandew/supertab'
   'w0rp/ale'

   必要時は以下を設定 インデントと補完がメインです
   'Vimjas/vim-python-pep8-indent'
   'nathanaelkane/vim-indent-guides'
   'davidhalter/jedi-vim'
   'Shougo/neosnippet'
   'Shougo/neocomplete'

1
1
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
1
1