LoginSignup
0
0

More than 3 years have passed since last update.

Development Environment

Last updated at Posted at 2020-05-12

ZSH + Oh-my-zsh things

zsh
# install shell with package manager
sudo apt install zsh

# set as default shell
chsh -s $(which zsh)

# test if it worked
echo $SHELL

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

# install zsh-auto-suggestions
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
0
0
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
0
0