以降はNotionで内容を管理する
---(※以下は過去記事です)---
Mac/Windows共通
Mac
-
-
Nodebrew
- node
- zsh, zsh-complete
- git(gibo, git-ftp)
- autojump
- peco
- rename
- tree
-
Nodebrew
-
- Preferences/Profiles/General/Command: zsh
- Preferences/Profiles/General/Text/Font: Rounded M+ 1mn light Anti-aliased
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
C:\Users\ USER \AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
スタートアップ時起動したいアプリケーションはココへ登録
- 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