This commit is contained in:
Chen Asraf
2018-11-15 12:35:06 +02:00
parent 33d13c7039
commit 418e17ef79
4 changed files with 17 additions and 3 deletions

View File

@@ -3,4 +3,6 @@ alias home="git --git-dir=$HOME/Dev/dotfiles/.git --work-tree=$HOME"
alias dv="cd $HOME/Dev"
alias dt="cd $HOME/Desktop"
alias dl="cd $HOME/Downloads"
alias serve="python3 -m http.server ${PORT:-3001}"
alias python="PYTHONPATH=$(pwd):$PYTHONPATH python"
alias -g G='| grep'

View File

@@ -1,2 +1,5 @@
#!/usr/bin/env zsh
export PATH=$PATH:/usr/local/opt/fzf/bin
export PATH=$PATH:$HOME/Library/Python/3.6/bin
export PATH="/usr/local/opt/openssl/bin:$PATH"

1
.vscode/settings.json vendored Symbolic link
View File

@@ -0,0 +1 @@
/Users/chenasraf/Library/Application Support/Code/User/settings.json

12
.zshrc
View File

@@ -61,6 +61,7 @@ ZSH_THEME="robbyrussell"
plugins=(
git
chucknorris
zsh-autosuggestions
)
source $ZSH/oh-my-zsh.sh
@@ -98,7 +99,14 @@ for a in aliases functions exports; do
if [[ -f "$HOME/.$a" ]]; then; source "$HOME/.$a"; fi
done
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
# autocompletions/suggestions/etc
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh # history fuzzy finder
# install autosuggestions:
# git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
# install syntax highlighting
# git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
chuck_cow
# source /Users/chenasraf/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
export PATH="$HOME/.yarn/bin:$HOME/.config/yarn/global/node_modules/.bin:$PATH"