1
mirror of https://github.com/jakejarvis/dotfiles.git synced 2026-01-12 16:32:54 -05:00

some small tweaks and removals for ZSH speed

This commit is contained in:
2019-09-08 11:19:54 -04:00
parent e3d6f992ae
commit 4f8b11940b
6 changed files with 16 additions and 21 deletions

View File

@@ -17,12 +17,7 @@ SAVEHIST=10000
ZSH_CUSTOM=$DOTFILES
ZSH_THEME="agnoster"
plugins=(
git
# colored-man-pages
colorize
pip
python
brew
osx
zsh-syntax-highlighting
zsh-autosuggestions

View File

@@ -44,7 +44,7 @@ alias ripdock="killall Dock"
alias ripmenu="killall SystemUIServer NotificationCenter"
alias finder="open ./"
alias vs="code ./"
alias vsc="code ./"
alias gundo="git reset --soft HEAD~1"
alias gc="git add . && git commit -m "
@@ -61,4 +61,4 @@ alias watchos="open /Applications/Xcode.app/Contents/Developer/Applications/Simu
alias pubkey="more ~/.ssh/id_rsa.pub | pbcopy | echo '=> Public key copied to clipboard.'"
alias weather="curl -4 http://wttr.in/Boston"
alias weather="curl -4 https://wttr.in/Boston"

View File

@@ -1,4 +1,4 @@
# Default junk
# Default paths
export PATH="$HOME/bin:/opt/local/bin:/opt/local/sbin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:$PATH"
# Go
@@ -7,11 +7,11 @@ export GOROOT="/usr/local/opt/go/libexec"
export PATH="$PATH:$GOPATH/bin"
export PATH="$PATH:$GOROOT/bin"
# ruby
# Ruby
export PATH="/usr/local/opt/ruby/bin:$PATH"
# metasploit
export PATH=:"/opt/metasploit-framework/bin:$PATH"
# Metasploit
export PATH="/opt/metasploit-framework/bin:$PATH"
# curl
export PATH="/usr/local/opt/curl/bin:$PATH"