Last active
December 11, 2019 01:56
-
-
Save jsrimr/2fd6bbf3d43b52b256227f42e1ea3e67 to your computer and use it in GitHub Desktop.
custom shell
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # visudo 먼저하기. sudo visudo | |
| # jeffrey ALL=(ALL) NOPASSWD:ALL | |
| sudo apt-get install -y zsh git | |
| curl -L https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh | sh | |
| #syntax highlighting | |
| git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting | |
| # autojump | |
| git clone git://github.com/wting/autojump.git | |
| cd autojump | |
| ./install.py | |
| cd .. | |
| #autosuggenstions | |
| git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions | |
| sed -i 's/plugins=(git)/plugins=(\n git\n zsh-syntax-highlighting\n zsh-autosuggestions\n autojump\n)/g' ~/.zshrc | |
| #chsh -s $(which zsh) | |
| # source ~/.zshrc | |
| # password 설정하려면 sudo passwd jeffrey | |
| # && sudo reboot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment