Last active
July 19, 2021 11:20
-
-
Save ash2703/e57f5a618fee17286f426f5ac87ffd08 to your computer and use it in GitHub Desktop.
Terminal Tips
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
# Install OMZ | |
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" | |
# That's it!! | |
# Choose your preferred theme if default bugs your eyes | |
# https://github.com/ohmyzsh/ohmyzsh/wiki/Themes | |
# Must do step: Set your plugins | |
# Plugins give you cool features like auto-complete, syntax-highlighting, auto-suggestions! | |
# https://github.com/ohmyzsh/ohmyzsh/wiki/Plugins | |
# To install auto-suggestions: | |
git clone https://github.com/zsh-users/zsh-autosuggestions.git $ZSH_CUSTOM/plugins/zsh-autosuggestions | |
# To install syntax-highlighting: | |
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git $ZSH_CUSTOM/plugins/zsh-syntax-highlighting | |
# Now just update your .zshrc file to support these extra plugins | |
nano ~/.zshrc | |
# Find and update the plugins line | |
... | |
plugins=(git zsh-autosuggestions zsh-syntax-highlighting) | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Get suggestions based on your history
