| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 | # Lines configured by zsh-newuser-installHISTFILE=~/.histfileHISTSIZE=1000SAVEHIST=1000setopt appendhistory autocd extendedglob nomatchbindkey -e# End of lines configured by zsh-newuser-install# The following lines were added by compinstallzstyle :compinstall filename '/home/josh/.zshrc'autoload -Uz compinitcompinit# End of lines added by compinstall# Use prompt colors (green for regular user, red for root)autoload -U colors && colorsif [ "$(id -u)" != "0" ]; then    PROMPT="%{$fg_bold[green]%}%n@%m %1~ $%{$reset_color%} "    RPROMPT="[%{$fg_no_bold[yellow]%}%?%{$reset_color%}]"else    PROMPT="%{$fg_bold[red]%}%n@%m %1~ #%{$reset_color%} "    RPROMPT="[%{$fg_no_bold[yellow]%}%?%{$reset_color%}]"fi# ls pleasantnessalias l='\ls --color=auto'alias ls='ls --color=auto'alias lsa='ls -a --color=auto'alias lls='ls -alh --color=auto'# apt-get aliases alias update='sudo apt-get update && sudo apt-get dist-upgrade' alias clean='sudo apt-get clean'# grep the entirety of the historyalias hg='history 1 | grep'# Use vim as the default text editorexport VISUAL=vim# Used to keep steam from throwing errorsexport SWT_GTK3=0# Home and End keysjump the the beginning/end of the commandbindkey "^[OH" beginning-of-linebindkey "^[OF" end-of-line# Ctrl-Left and Ctrl-Right keys move between wordsbindkey ";5C" forward-word# bindkey "^[[C" forward-wordbindkey ";5D" backward-word# bindkey "^[[D" backward-word# Used for X forwarding in Cygwinif [[ "$(uname -o)" != "GNU/Linux" ]]; then    DISPLAY=:1.0fi# local folder in PATH for UE4export PATH=$HOME/bin:$PATH# Flags used for CS243 "Mechanics of Programming"alias gcc='gcc -std=c99 -Wall -ggdb -Wextra -pedantic'# devkitPro/devkitPPC sourcesexport DEVKITPRO=/home/josh/devkitPro/ export DEVKITPPC=/home/josh/devkitPro//devkitPPC# alias for vim muscle memory when quittingalias :q='exit'# eval used by thefuckif hash fuck 2>/dev/null; then    eval $(thefuck --alias)fi# Instantly write historysetopt -o sharehistory# Ignore duplicates in historysetopt HIST_IGNORE_DUPS# zsh-syntax-highlighting (MUST BE AT THE BOTTOM OF THIS FILE)source ~/.zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
 |