Skip to content

Instantly share code, notes, and snippets.

@ash2703
Last active July 19, 2021 11:20
Show Gist options
  • Save ash2703/e57f5a618fee17286f426f5ac87ffd08 to your computer and use it in GitHub Desktop.
Save ash2703/e57f5a618fee17286f426f5ac87ffd08 to your computer and use it in GitHub Desktop.
Terminal Tips
# 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)
...
@ash2703
Copy link
Author

ash2703 commented Jul 19, 2021

Enable touch ID for terminal MAC: https://apple.stackexchange.com/a/306324

term-tid

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment