VSCode 설치

https://code.visualstudio.com/

 

 

 

폰트1 : D2Coding

https://github.com/naver/d2codingfont/releases

 

Releases · naver/d2codingfont

D2 Coding 글꼴. Contribute to naver/d2codingfont development by creating an account on GitHub.

github.com

폰트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)" 

# 이후 나오는 스크립트 실행하기
jjongguet