티스토리 뷰

1. 터미널 설치 (shell)

1
2
3
sudo add-apt-repository ppa:gnome-terminator
sudo apt-get update
sudo apt-get install terminator

현재 터미널은 기본값으로 설정 되어야 하기 때문에 터미널을 재시작 (단축키: “Ctrl+Alt+T”).

 2. ZSH 설치

1
sudo apt-get install zsh

설치 후 터미널 재시작 (단축키: “Ctrl+Alt+T”)

 3. Oh My ZSH 설치

1
2
cd
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

 4. Powerline 폰트 설치

 4-1. Powerline 폰트 설치

1
2
3
4
5
cd
wget https://github.com/powerline/powerline/raw/develop/font/PowerlineSymbols.otf
wget https://github.com/powerline/powerline/raw/develop/font/10-powerline-symbols.conf
mv PowerlineSymbols.otf ~/.fonts/
mkdir -p .config/fontconfig/conf.d #만약 폴더가 없다면 만들기

 4-2. 폰트 캐시 없애기

1
fc-cache -vf ~/.fonts/

 4-3. config파일 옮기기

1
mv 10-powerline-symbols.conf ~/.config/fontconfig/conf.d/

 5. ZSH 설정

1
vi ~/.zshrc

 테마 설정

[ZSH_THEME=“robbyrussell”]을 찾아서 [ZSH_THEME=“agnoster”]로 테마를 변경

테마 robbyrussell -> agnoster

1
ZSH_THEME="agnoster"

 Solarize를 사용하여 테마 색깔 바꾸기

dconf가 설치 안되어 있다면 설치

1
sudo apt-get install dconf-cli

 Solarize 설치

1
2
3
git clone git://github.com/sigurdga/gnome-terminal-colors-solarized.git ~/.solarized
cd ~/.solarized
./install.sh
  • 옵션 중 자신이 원하는 옵션을 선택(추천 : 1번 dark theme)
  • 그 다음 다시 옵션 1인 seebi’ dircolors-solarized을 선택 후 다운로드

모든 설치가 끝나면 vi ~/.zshrc 명령어를 입력하여 마지막 라인에 아래 코드를 추가

1
eval `dircolors ~/.dir_colors/dircolors`


댓글
«   2024/05   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
최근에 올라온 글
Total
Today
Yesterday