4
5

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/Windows)

Last updated at Posted at 2015-10-23

以降はNotionで内容を管理する

セットアップ覚書(Notion)

---(※以下は過去記事です)---

Mac/Windows共通

  1. Chrome
  2. Google日本語入力
  3. AZIK

Mac

  1. Karabiner

  2. BetterTouchTool

    • 三本指でのウィンドウドラッグはシステム環境設定から!
      b61hmq769bnzstynvjnl.png
  3. Homebrew

    • Nodebrew
      • node
    • zsh, zsh-complete
    • git(gibo, git-ftp)
    • autojump
    • peco
    • rename
    • tree
  4. iTerm2

    • Preferences/Profiles/General/Command: zsh
    • Preferences/Profiles/General/Text/Font: Rounded M+ 1mn light Anti-aliased
  5. Visual Studio Code

  6. Clipy

Path設定

.zshenv
export PATH=$HOME/.nodebrew/current/bin:$PATH
export PATH="/usr/local/bin:$PATH"

path=(
    ~/bin
    $path
)

export PATH="$HOME/.rbenv/bin:$PATH"
eval "$(rbenv init -)"
.zshrc
[[ -s $(brew --prefix)/etc/profile.d/autojump.sh ]] && . $(brew --prefix)/etc/profile.d/autojump.sh

Windows

  1. Macnize Windows Keyboard

C:\Users\ USER \AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
スタートアップ時起動したいアプリケーションはココへ登録

  1. Windows Subsystem for Linux
  • Microsoft Store からインストール

    ※proxy環境では下記を設定

    /etc/apt/apt.conf

sudo vi /etc/apt/apt.conf
Acquire::ftp::proxy "ftp://192.168.0.1:8080/";
Acquire::http::proxy "http://192.168.0.1:8080/";
Acquire::https::proxy "https://192.168.0.1:8080/";

    ```zsh:zsh
export "http_proxy=http://192.168.0.1:8080/"
export "https_proxy=http://192.168.0.1:8080/"
```zsh:.curlrc

proxy = http://192.168.0.1:8080/

nodebrewを入れるのに必要


    ```zsh:.gitrc
[http]
        proxy = http://192.168.0.1:8080
[https]
        proxy = http://192.168.0.1:8080
[url "https://"]
        insteadOf = git://

3. ~~[chocolatey](https://chocolatey.org/install)~~ パッケージ管理は使わない
  - Windowsでパッケージ管理はまともなのない印象(2018/4)
  - chocolateyうまく機能しないものが結構あるかも(2017/9)
  - chocolateyでインストールするツールなど

    ```zsh:zsh
cinst visualstudiocode sublimetext3 sublimetext3.packagecontrol rapidee -y
  1. Cmder

windowsのターミナル(黒い画面のやつ)設定

  1. neobundle
  2. f.lux
  3. screenpresso
  4. Clipboard-History
  5. launchy
4
5
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
4
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?