LoginSignup
18
12

More than 5 years have passed since last update.

Zshのインストール

Last updated at Posted at 2015-09-07

参考サイト

zshがインストールされているかを確認

zsh --version

yumでzshをインストール

sudo yum -y install zsh

zshの起動とログイン・シェルの設定

現在使用しているshellの確認

echo $SHELL

使用可能なshellの確認

cat /etc/shells

ログイン・シェルに設定

chsh -s /bin/zsh

zshの設定をgithubから取得して反映する

git clone https://github.com/abgata20000/zsh.d.git ~/.zsh.d
echo "source ~/.zsh.d/zshrc" > ~/.zshrc
echo "source ~/.zsh.d/zshenv" > ~/.zshenv

ログインし直すと反映される
※ユーザー毎に設定

18
12
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
18
12