Linux

oh-my-zsh auto completion

PSAwesome 2022. 12. 21. 12:54
반응형

https://kubernetes.io/ko/docs/reference/kubectl/cheatsheet/

 

kubectl 치트 시트

이 페이지는 일반적으로 사용하는 kubectl 커맨드와 플래그에 대한 목록을 포함한다. Kubectl 자동 완성 BASH source <(kubectl completion bash) # bash-completion 패키지를 먼저 설치한 후, bash의 자동 완성을 현재

kubernetes.io

 

 

highlighting

git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
source ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh

 

highlighting

 

auto suggestions

git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
source ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh

auto suggestions on mac
auto suggestions on ubuntu

 

 

다른 방법으로 plugin 추가가 있습니다.

git clone

git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting

~/.zshrc 수정

plugins=(git) => plugins=(git ...)

plugins=(git zsh-syntax-highlighting zsh-autosuggestions kubectl kube-ps1)

 

 

 

반응형

'Linux' 카테고리의 다른 글

ubuntu upgrade 22.04 up to 23.04  (0) 2023.06.21
mac os vim colorful - default vim  (0) 2022.12.25
install nvidia-smi on ubuntu 22.04  (0) 2022.12.04
change openSSH default port on ubuntu 22.10  (0) 2022.12.03
centos 7 server 설치 후 설정  (0) 2022.10.06