2021년 개발자의 Mac 설정
첫번째 일
먼저 자체 제작 소프트웨어와 필요한 응용 프로그램을 설치한다.네가 원하지 않는 어떤 앱도 마음대로 건너뛰다
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
그런 다음 brew를 사용하여 권장 응용 프로그램을 설치합니다.Iterm2 터미널 향상
brew install iterm2
더 나은 브라우저를 위한 Brave
brew install brave-browser
Rectangle 창 관리용(안경 설정 사용)
brew install rectangle
암호 관리용 1Password
brew install 1password
VSCode 편집
brew install visual-studio-code
Atom 다른 편집자
brew install atom
Discord
brew install discord
Kap 화면 녹화에 사용 (아래gif를 만들 때 사용합니다)
brew install kap
Make your terminal pretty
이것이 최종 모양새입니다.
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
open ~/.zshrc
ZSH_THEME="theunraveler"
Download the .itermcolors file from: https://github.com/Clovis-team/clovis-open-code-extracts/tree/master/utils
Preferences -> Profile -> Colors -> Import
brew install zsh-autosuggestions
brew install zsh-syntax-highlighting
Open iTerm2, and go to:
Settings -> Appearance -> Theme: Minimal
Preferences -> Profile -> Text -> Font: Menlo
brew tap homebrew/cask-fonts
brew install font-hack-nerd-font
brew untap homebrew/cask-fonts
- Fira Code
- Source Code Pro
- Cascadia
- Font Hack
- Nerd Fonts
last login
파이프를 뜯어내다.cd ~ ; touch .hushlogin
BigSur에 있는 사람의 방주
어떤 이유로 MacOS가 iTerm2를 요청하는 데 필요한 모든 권한을 잊어버려서 홈 brew를 사용할 때 업데이트가 끊겼습니다.이 문제를 해결하려면:
Open Security and Privacy -> Privacy Tab -> Full Disk Access -> Enable iTerm
루비 환경
나는 최근에 ruby-install
와 chruby
로 대체하기 시작했다rbenv
.
이 솔루션은 사용하기 쉬운 경량급 솔루션입니다.
brew install ruby-install
brew install chruby
그리고 최신 안정적인 루비를 설치합니다.
ruby-install ruby
크루비가 이 버전을 기본 버전으로 설정하고 필요에 따라 버전을 변경할 수 있도록 합니다.폴더의 루비 버전 파일입니다.
이 점을 하려면 당신에게 첨부해 주십시오.zshrc:
source /usr/local/opt/chruby/share/chruby/chruby.sh
source /usr/local/opt/chruby/share/chruby/auto.sh
chruby ruby-2.7.2 # <- Your installed version here
힐로쿠클리 호텔
brew tap heroku/brew && brew install heroku
VScode 설정
VScode를 설치한 후에는 비대해진 기본 설정부터 시작하겠습니다.
더 깨끗해 보이기 위해:
설정cmd + ,
을 열고 코드 글꼴 또는 기타 기본 글꼴로 추가Fira Code
:
그런 다음 설정에서 하이픈을 검색하고 설정 편집을 클릭합니다.json, 하이픈 줄을 다음과 같이 변경합니다.
"editor.fontLigatures": true
확장자cmd + shift + x
나 사이드바에 있는 마지막 단추를 열고 더 좋은 테마를 설치합니다.나는 어두운 주제를 좋아한다.또한 Prettier를 설치합니다.
그런 다음 설정을 반환하고 저장할 때 형식을 활성화합니다.이제 포맷 코드가 아닌 인코딩에 집중할 수 있습니다🚀
-> Open settings
-> Check the box for Format on Save
잡동사니를 제거하라!
작은 지도, 밑에 있는 상태 표시줄, 왼쪽에 커다란 단추가 있는 활동 표시줄을 제거하십시오.
-> Open the VSCode commands ( cmd + shift + P )
-> Toggle Activity Bar Visibility
-> Toggle Status Bar Visibility
-> Toggle Minimap
얼마 안 남았어!마지막 일은 유용한 단축키를 추가하는 것이다.내가 사용하는 모든 프로그램에서 cmd+1을 호출해서 첫 번째 옵션을 전환하고 cmd+2를 호출해서 두 번째 옵션을 전환할 수 있다.VScode에서 이 작업을 수행하려면 단축키 설정cmd+k cmd+s
을 열고 오른쪽 위 모서리를 클릭하여 키보드 단축키를 열고 다음 단축키를 추가합니다.
[
// Open tabs with CMD
{
"key": "cmd+1",
"command": "workbench.action.openEditorAtIndex1"
},
{
"key": "cmd+2",
"command": "workbench.action.openEditorAtIndex2"
},
{
"key": "cmd+3",
"command": "workbench.action.openEditorAtIndex3"
},
{
"key": "cmd+4",
"command": "workbench.action.openEditorAtIndex4"
},
{
"key": "cmd+5",
"command": "workbench.action.openEditorAtIndex5"
},
{
"key": "cmd+6",
"command": "workbench.action.openEditorAtIndex6"
},
{
"key": "cmd+7",
"command": "workbench.action.openEditorAtIndex7"
},
{
"key": "cmd+8",
"command": "workbench.action.openEditorAtIndex8"
},
{
"key": "cmd+9",
"command": "workbench.action.openEditorAtIndex9"
},
// Toggle the leftmost bar with the huge icons
{
"key": "cmd+ctrl+b",
"command": "workbench.action.toggleActivityBarVisibility"
},
]
너 망했어!누리다
출처
일반 설정 및 터미널:
brew install ruby-install
brew install chruby
ruby-install ruby
source /usr/local/opt/chruby/share/chruby/chruby.sh
source /usr/local/opt/chruby/share/chruby/auto.sh
chruby ruby-2.7.2 # <- Your installed version here
brew tap heroku/brew && brew install heroku
VScode 설정
VScode를 설치한 후에는 비대해진 기본 설정부터 시작하겠습니다.
더 깨끗해 보이기 위해:
설정cmd + ,
을 열고 코드 글꼴 또는 기타 기본 글꼴로 추가Fira Code
:
그런 다음 설정에서 하이픈을 검색하고 설정 편집을 클릭합니다.json, 하이픈 줄을 다음과 같이 변경합니다.
"editor.fontLigatures": true
확장자cmd + shift + x
나 사이드바에 있는 마지막 단추를 열고 더 좋은 테마를 설치합니다.나는 어두운 주제를 좋아한다.또한 Prettier를 설치합니다.
그런 다음 설정을 반환하고 저장할 때 형식을 활성화합니다.이제 포맷 코드가 아닌 인코딩에 집중할 수 있습니다🚀
-> Open settings
-> Check the box for Format on Save
잡동사니를 제거하라!
작은 지도, 밑에 있는 상태 표시줄, 왼쪽에 커다란 단추가 있는 활동 표시줄을 제거하십시오.
-> Open the VSCode commands ( cmd + shift + P )
-> Toggle Activity Bar Visibility
-> Toggle Status Bar Visibility
-> Toggle Minimap
얼마 안 남았어!마지막 일은 유용한 단축키를 추가하는 것이다.내가 사용하는 모든 프로그램에서 cmd+1을 호출해서 첫 번째 옵션을 전환하고 cmd+2를 호출해서 두 번째 옵션을 전환할 수 있다.VScode에서 이 작업을 수행하려면 단축키 설정cmd+k cmd+s
을 열고 오른쪽 위 모서리를 클릭하여 키보드 단축키를 열고 다음 단축키를 추가합니다.
[
// Open tabs with CMD
{
"key": "cmd+1",
"command": "workbench.action.openEditorAtIndex1"
},
{
"key": "cmd+2",
"command": "workbench.action.openEditorAtIndex2"
},
{
"key": "cmd+3",
"command": "workbench.action.openEditorAtIndex3"
},
{
"key": "cmd+4",
"command": "workbench.action.openEditorAtIndex4"
},
{
"key": "cmd+5",
"command": "workbench.action.openEditorAtIndex5"
},
{
"key": "cmd+6",
"command": "workbench.action.openEditorAtIndex6"
},
{
"key": "cmd+7",
"command": "workbench.action.openEditorAtIndex7"
},
{
"key": "cmd+8",
"command": "workbench.action.openEditorAtIndex8"
},
{
"key": "cmd+9",
"command": "workbench.action.openEditorAtIndex9"
},
// Toggle the leftmost bar with the huge icons
{
"key": "cmd+ctrl+b",
"command": "workbench.action.toggleActivityBarVisibility"
},
]
너 망했어!누리다
출처
일반 설정 및 터미널:
"editor.fontLigatures": true
-> Open settings
-> Check the box for Format on Save
-> Open the VSCode commands ( cmd + shift + P )
-> Toggle Activity Bar Visibility
-> Toggle Status Bar Visibility
-> Toggle Minimap
[
// Open tabs with CMD
{
"key": "cmd+1",
"command": "workbench.action.openEditorAtIndex1"
},
{
"key": "cmd+2",
"command": "workbench.action.openEditorAtIndex2"
},
{
"key": "cmd+3",
"command": "workbench.action.openEditorAtIndex3"
},
{
"key": "cmd+4",
"command": "workbench.action.openEditorAtIndex4"
},
{
"key": "cmd+5",
"command": "workbench.action.openEditorAtIndex5"
},
{
"key": "cmd+6",
"command": "workbench.action.openEditorAtIndex6"
},
{
"key": "cmd+7",
"command": "workbench.action.openEditorAtIndex7"
},
{
"key": "cmd+8",
"command": "workbench.action.openEditorAtIndex8"
},
{
"key": "cmd+9",
"command": "workbench.action.openEditorAtIndex9"
},
// Toggle the leftmost bar with the huge icons
{
"key": "cmd+ctrl+b",
"command": "workbench.action.toggleActivityBarVisibility"
},
]
일반 설정 및 터미널:
Reference
이 문제에 관하여(2021년 개발자의 Mac 설정), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/lucaskuhn/mac-setup-for-a-developer-in-2020-26ak텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)