jgwk

터미널 설정 본문

mac

터미널 설정

JungleWalker 2021. 4. 13. 16:54

사양

m1 macbook air, big sur

 

iterm2 설치

링크에서 다운로드 및 설치

 

설정 > Profiles > Text : 글꼴 변경

 

oh my zsh 설치

# https://ohmyz.sh
$ sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

 

zsh 설정

# .zshrc
plugins=(git colored-man-pages)
alias ll='gls -l -h --group-directories-first'

 

vim 설정

set nu
set ic

 

homebrew 설치

# https://brew.sh/index_ko
$ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

# m1 mac 에선 패스에 등록이 안되서 직접 등록
$ echo "export PATH=/opt/homebrew/bin:$PATH" >> ~/.zshrc

# brew 예제
$ brew search cask
$ brew install cask
$ brew list
$ brew remove cask

 

'mac' 카테고리의 다른 글

맥-모니터 연결 시 보라색 색감 문제  (0) 2021.04.17
런치패드 아이콘 개수 설정  (0) 2021.04.14
m1 맥북 에어 구매 후기  (0) 2021.01.05
Comments