Last active
November 19, 2019 14:25
-
-
Save Melonangie/a760e3a32477c6c400e3a439930702f4 to your computer and use it in GitHub Desktop.
iterm configuration
This file contains 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 Drak Paster theme | |
https://iterm2colorschemes.com/ | |
# Install zsh https://ohmyz.sh/ | |
$ sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" | |
# Themes with commit time: | |
# ZSH_THEME="smt" | |
# ZSH_THEME="hyperzsh" https://github.com/tylerreckart/hyperzsh | |
# ZSH_THEME="nt9" https://github.com/lenguyenthanh/nt9-oh-my-zsh-theme | |
# ZSH_THEME="xxf" | |
# ZSH_THEME="avit-da2k" https://github.com/fdaciuk/avit-da2k | |
# ZSH_THEME="McQuen" https://gist.github.com/ryanpcmcquen/150cf9a66bca2463e5660cafed3e1000 | |
# https://github.com/geometry-zsh/geometry source /Users/mrabeler/.oh-my-zsh/themes/geometry/geometry.zsh | |
# Install homebrew https://brew.sh/ | |
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
# Install staff | |
brew install python | |
brew install maven | |
brew install kubectl | |
brew install tig | |
brew install scmpuff | |
brew install diff-so-fancy | |
brew install the_silver_searcher | |
brew install autojump | |
brew install thefuck | |
brew install zsh-completions | |
brew install zsh-autosuggestions | |
brew install zsh-syntax-highlighting | |
brew install zsh-history-substring-search | |
# Colored cat | |
python3 -m pip install Pygments | |
# Add alias | |
alias python="python3" | |
alias pip="python3 -m pip" | |
alias cat="pygmentize -g" | |
export LANGUAGE="en_US:en" | |
export LC_ALL="en_US.UTF-8" | |
plugins=(git colorize man) | |
# Source zsh config | |
source ~/.zshrc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment