mirror of
https://github.com/chenasraf/dotfiles.git
synced 2026-05-17 17:28:07 +00:00
23 lines
856 B
Bash
Executable File
23 lines
856 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
source $HOME/.dotfiles/colors.sh
|
|
|
|
# Set personal aliases, overriding those provided by oh-my-zsh libs,
|
|
# plugins, and themes. Aliases can be placed here, though oh-my-zsh
|
|
# users are encouraged to define aliases within the ZSH_CUSTOM folder.
|
|
# For a full list of active aliases, run `alias`.
|
|
#
|
|
# Example aliases
|
|
# alias zshconfig="mate ~/.zshrc"
|
|
# alias ohmyzsh="mate ~/.oh-my-zsh"
|
|
alias reload-zsh="source $HOME/.zshrc"
|
|
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 python3="PYTHONPATH=$(pwd):$PYTHONPATH python3"
|
|
alias -g G="| grep -i"
|
|
alias brew-dump="brew bundle dump --describe"
|
|
mansect () { man -aWS ${1?man section not provided} \* | xargs basename | sed "s/\.[^.]*$//" | sort -u; }
|