-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zsh_aliases
22 lines (22 loc) · 897 Bytes
/
.zsh_aliases
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
alias sudo='sudo '
alias ll='ls -alF'
alias la='ls -A'
alias l='ls -CF'
alias q='exit'
alias cls='clear'
alias c='clear'
alias pg='ping google.com'
alias pgh='ping github.com'
alias kbbi='kbbi-shell'
alias sd="cd ~ && cd \$(find * -type d -not -path 'Android/Sdk/*' -not -path 'Development/*' -not -path '*/node_modules/*' -not -path '*/vendor/*' -not -path '*/.git/*'| fzf)"
alias sdp="cd ~/Documents/Programming && cd \$(find * -maxdepth 2 -type d -not -path '*/node_modules/*' -not -path '*/vendor/*' -not -path '*/.*/*'| fzf)"
alias sad="cd ~ && cd \$(find . -type d | fzf)"
alias ccc="xclip -sel clip"
alias emu="emulator -avd main -ranchu"
alias phpserve="php -S 127.0.0.1:8000 -t public"
alias bundletool="java -jar ~/Development/bundletool.jar"
alias lg="lazygit"
alias n="nvim"
alias translate="trans en:id -I"
alias sczsh="source ~/.zshrc"
alias devenv="source ~/.venv/dev/bin/activate"