xcode-select --install
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
brew install starship
brew install zplug
brew install vim
brew install bat
mkdir -p .config/bat && ln -sf $HOME/dotrc/batrc $HOME/.config/bat/config
brew install lsd
brew install gh
## Install gh extensions
gh ext install github/gh-copilot
brew install git-delta
brew install tig
mkdir -p .config/tig && ln -sf $HOME/dotrc/tigrc $HOME/.config/tig/config
brew install --cask 1password 1password-cli
brew install --cask raycast
brew install --cask visual-studio-code
brew install --cask arc
brew install --cask warp
brew install --cask iterm2
# MS cascdia code font https://github.com/microsoft/cascadia-code
font-cascadia-code
font-cascadia-code-nf
# D2 coding
font-d2coding-nerd-font
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
brew install deno
ln -sf $HOME/dotrc/zshrc $HOME/.zshrc
- 업무용은
zshrc.work
파일을 이용
- User
git config --global user.email ""
git config --global user.name ""
- Core
git config --global core.autocrlf input
git config --global core.whitespace cr-at-eol,fix,trailing-space,-indent-with-non-tab
- Merge
git config --global merge.conflictstyle zdiff3
- Commit
git config --global commit.template $HOME/dotrc/gitmessage
- Delta
git config --global core.pager delta
git config --global interactive.diffFilter "delta --color-only"
git config --global delta.line-numbers true
git config --global delta.side-by-side true
git config --global delta.navigate true
git config --global delta.diff-so-fancy true
git config --global delta.hyperlinks true