개발 환경 설정
-
zsh syntax hightlight 적용개발 환경 설정 2021. 12. 26. 00:36
맥에서 zsh 사용시sytax hightlight 적용하면 타이핑시 가독성이 올라간다. #1 zsh-syntax-highlighting 설치 brew 를 이용해 설치 합니다. brew install zsh-syntax-highlighting ➜ ~ brew install zsh-syntax-highlighting Running `brew update --preinstall`... ==> Auto-updated Homebrew! Updated 2 taps (homebrew/core and homebrew/cask). ==> Updated Formulae Updated 25 formulae. ==> Deleted Formulae exomizer ==> Updated Casks Updated 36 casks...
-
Visual code 개발 환경 설정개발 환경 설정 2021. 8. 8. 01:24
멀티 윈도우 윈도우, 리눅스 : Ctrl + K, O (O 누를땐 O만 누른다.) 맥 : Command + K, O (O 누를땐 O만 누른다.) https://stackoverflow.com/questions/43362133/visual-studio-code-open-tab-in-new-window 코드 세로선 보이게 하기, Vertical rulers 코드 가로 100 라인에 세로로 선 보이게 하기 Preferences -> settings 이동후 vertical 검색 하면 Editor : Rulers 가 검색된다. 그 이후 Edit in settings.json 클릭 후 아래와 같이 수정 "workbench.colorCustomizations": { "editorRuler.foreground": "#..
-
Windows Terminal(윈도우 터미널)개발 환경 설정 2021. 1. 17. 19:07
기존 윈도우 환경에서 제공되던 CMD에 비해 사용성이 대폭 강화된 Windows Terminal 입니다. 보다시피 다양한 환경의 shell을 지원하고 있습니다.마우스 사용 가능, 폰트 변경 등 입맛대로 커스텀이 가능합니다. 설치는 Microsoft Store에서 가능합니다.Microsoft Store app 실행 후 windows terminal 을 설치합니다. 설치가 완료된 모습 탭의 기본 순서, 폰트등은 설정에서 가능합니다. 설정파일은 json 형태로 이루어져 있습니다.defaultProfile에 해당하는 id를 기입하면 Windows Terminal 실행시 기본탭으로 설정 됩니다.fontFace, fontSize 등을 통하여 폰트 설정이 가능합니다. 저는 git 사용시나 aws ec2 접속등에 사용..