반응형
공부/IDE2022. 12. 30. 20:36[VSCode] oh-my-zsh 사용시 터미널 폰트 깨짐 문제 해결

개요 - ubuntu 또는 wsl2 작업 환경이 익숙해서 vscode 기본 터미널을 변경 함 - 그런데 폰트 설정이 안 되어 있어, 아래와 같이 아이콘이 깨진 상태로 출력됨 해결 - Setting (ctrl + , ) > User >Features > Terminal 선택 - Integerated : Font Fmaily 입력 칸에 사용하는 폰트 입력 ( ex. MesloLGS NF ) 필자의 경우 oh-my-zsh custom theme 에서 요구하는 폰트 사용 ! 사용하는 폰트 설치 후 입력 !

공부/DevOps2022. 6. 8. 10:15[oh my zsh ] git 사용시 index refreshing 되는 이슈

개요 평소와 같이 git repository 들어가서 git status 했는데 전체 파일이 modified 상태로 확인됨 검색 키워드 👉 index refresh problem when change git terminal 작업 환경 : wsl , ubuntu, oh-my-zsh 해결 LF 인식으로 인한 문제였고, git config 수정함 ## For the current repository git config core.filemode false git config core.autocrlf true ## For global config (필자는 global 설정함 👨‍💻) git config --global core.autocrlf true git config --global core.filemode ..

반응형
image