프런트 엔드 환경 초기화(Mac/Windows)
설정 각서(Notion)
---(※이하는 과거 기사입니다)---
Mac/Windows 공통
Mac
BetterTouchTool
Homebrew
Nodebrew
iTerm2
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
Macnize Windows Keyboard
C:\Users\USER\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
스타트업시 기동하고 싶은 어플리케이션은 코코에 등록
Windows Subsystem for Linux
※프록시 환경에서는 아래와 같이 설정
/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
export "http_proxy=http://192.168.0.1:8080/"
export "https_proxy=http://192.168.0.1:8080/"
.curlrc
proxy = http://192.168.0.1:8080/
# nodebrewを入れるのに必要
.gitrc
[http]
proxy = http://192.168.0.1:8080
[https]
proxy = http://192.168.0.1:8080
[url "https://"]
insteadOf = git://
chocolatey 패키지 관리를 사용하지 않음
zsh
cinst visualstudiocode sublimetext3 sublimetext3.packagecontrol rapidee -y
Cmder
windows 터미널 (검정 화면 녀석) 설정
Reference
이 문제에 관하여(프런트 엔드 환경 초기화(Mac/Windows)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/pokkur/items/0cd5d866fe55a2d06353텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)