FirstBoot Guides

설정(Preference) 백업 및 동기화 가이드

새 PC를 세팅할 때 가장 시간이 많이 걸리는 '개인 설정'을 빠르게 복구하고 동기화하는 방법을 안내합니다.

💻 IDE 설정 동기화

  • IntelliJ IDEA: `File > Manage IDE Settings > IDE Settings Sync` 활성화 (JetBrains 계정 필요)
  • VS Code: 좌측 하단 톱니바퀴 > `Turn on Settings Sync` 클릭 (GitHub/MS 계정 연동)
  • 추천 플러그인: Keymap, Theme, Prettier 설정 등이 모두 동기화됩니다.

🐙 Git 글로벌 설정

새 PC에서 가장 먼저 실행해야 할 명령어입니다.

# 사용자 정보 설정 git config --global user.name "Your Name" git config --global user.email "your@email.com" # 줄바꿈 설정 (Windows=true, Mac=input) git config --global core.autocrlf true # 인증 정보 저장 git config --global credential.helper store

🐚 터미널 & Dotfiles

  • zsh (Oh My Zsh): `.zshrc` 파일 백업
  • Starship: `~/.config/starship.toml` 파일 백업
  • Dotfiles 운영 팁: GitHub에 `dotfiles` 레포지토리를 만들고 심볼릭 링크(ln -s)로 관리하면 환경 이전이 매우 쉬워집니다.

🔑 브라우저 설정

  • Chrome/Edge: 프로필 동기화 활성화로 북마크, 확장 프로그램, 저장된 비밀번호 즉시 복구

🚀 세팅 시간 단축 팁

동기화 기능을 지원하지 않는 도구들은 설정 내보내기(Export) 기능을 활용하여 JSON 또는 XML 파일로 클라우드(Google Drive/OneDrive)에 보관해두세요.