VSCode 설치
https://code.visualstudio.com/
폰트1 : D2Coding
https://github.com/naver/d2codingfont/releases
폰트2: 산돌고딕네오
WSL2
https://docs.microsoft.com/ko-kr/windows/wsl/install
dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
wsl --set-version Ubuntu 2
wsl --set-default-version 2
Docker
https://www.docker.com/products/docker-desktop/
로그인 및 wsl2 기본설정 확인
java jdk 설치
sudo apt install default-jdk
#출력확인
java -version
zsh shell
sudo apt update
sudo apt install git zsh -y
sudo chsh -s $(which zsh)
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
ZSH_DISABLE_COMPFIX=true
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git $ZSH_CUSTOM/themes/powerlevel10k
#.zshrc에서 테마를 ZSH_THEME="powerlevel10k/powerlevel10k" 로 변경
#재설정하는 명령어 : p10k configure
Plugin : Syntax highlighting
cd ~/.oh-my-zsh/custom/plugins
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git
echo "source ${(q-)PWD}/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh" >> ${ZDOTDIR:-$HOME}/.zshrc
source ~/.zshrc
Brew install
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
# 이후 나오는 스크립트 실행하기
'생산성, 개발장비' 카테고리의 다른 글
맥에서 루트(Root)권한 활성화/비활성화 (0) | 2022.11.08 |
---|---|
m1맥북에어에서 외장모니터2대이상 사용하는법 (0) | 2022.10.02 |
VSC 개발환경 설정 (0) | 2022.06.05 |
LG전자 34wn750 를 사려는 사람들에게 (1) | 2022.03.22 |
트리와 애플 매직패드 트레이 리뷰 (0) | 2022.03.16 |