mirror of
https://github.com/chenasraf/dotfiles.git
synced 2026-05-17 17:28:07 +00:00
updates
This commit is contained in:
4
.aliases
4
.aliases
@@ -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'
|
||||
|
||||
3
.exports
3
.exports
@@ -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
1
.vscode/settings.json
vendored
Symbolic link
@@ -0,0 +1 @@
|
||||
/Users/chenasraf/Library/Application Support/Code/User/settings.json
|
||||
12
.zshrc
12
.zshrc
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user