Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 개념
- Docker-compose
- kubernetes
- 클라우드
- worker
- mysql
- RAID
- 이론
- PaaS
- express
- node.js
- 네트워크
- git
- 쿠버네티스
- 도커
- 명령어
- Javascript
- network
- RAPA
- nodejs
- dockerfile
- IaaS
- 용어정리
- OpenStack
- MongoDB
- 실습
- gns3
- PAT
- Docker Swarm
- docker
Archives
- Today
- Total
융융이'Blog
[꿀팁]on-my-zsh 설치 및 plugin 설정 본문
ubuntu 18.04에서 설치
sudo apt-get install zsh
sudo sh -c "echo 'deb http://download.opensuse.org/repositories/shells:/zsh-users:/zsh-completions/xUbuntu_18.04/ /' > /etc/apt/sources.list.d/shells:zsh-users:zsh-completions.list"
wget -nv https://download.opensuse.org/repositories/shells:zsh-users:zsh-completions/xUbuntu_18.04/Release.key -O Release.key
sudo apt-key add - < Release.key
sudo apt-get update
sudo apt-get install zsh-completions
oh-my-zsh 설치
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
테마 변경하기(다른 곳 보시길) 전 rubbyrussell이 좋더라고요
zsh-syntax-highlighting과 zsh-autosuggestions 설치하기
zsh-syntax-highlighting : 명령어를 색상으로 구분해줌
zsh-autosuggestions : 자동으로 명령어 추천해줌 개꿀딱
# zsh-syntax-highlighting
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
# zsh-autosuggestions
git clone git://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions
~/.zshrc
파일에 설정을 추가하기
vim ~/.zshrc
...
# plugins 위치에서
plugins=(
git
zsh-syntax-highlighting
zsh-autosuggestions
)
...
'2022이전 > Linux' 카테고리의 다른 글
리눅스 기본 (0) | 2020.06.26 |
---|---|
Log Level (0) | 2020.06.18 |
Linux RunLevle (0) | 2020.05.15 |
chmod 권한 (0) | 2020.05.14 |
간단하게 파일 편집하기(Linux) (0) | 2020.05.14 |