mirror of
https://github.com/aquatix/dotfiles.git
synced 2025-12-07 00:05:10 +01:00
68 lines
2.1 KiB
Fish
68 lines
2.1 KiB
Fish
# Set editor to vim
|
|
set EDITOR vim
|
|
|
|
# Virtualenv support with virtualfish
|
|
eval (python -m virtualfish compat_aliases)
|
|
|
|
# Theme options for bobthefish
|
|
set -g theme_show_exit_status yes
|
|
set -g theme_date_format "+%a %Y-%m-%d %H:%M:%S"
|
|
|
|
# grc colouriser
|
|
set -U grcplugin_ls --color
|
|
|
|
# PATH
|
|
## If the private dotfiles repo is installed, we'd like to use its scripts too
|
|
if test -x ~/.dot/privdotfiles/bin
|
|
set PATH $PATH ~/.dot/privdotfiles/bin
|
|
end
|
|
|
|
## Android-related binaries
|
|
if test -x /usr/local/bin/android-sdk-linux/platform-tools
|
|
set PATH $PATH /usr/local/bin/android-sdk-linux/platform-tools /usr/local/bin/android-sdk-linux/tools
|
|
end
|
|
|
|
# Aliases
|
|
## Listing
|
|
alias ll 'ls -alF'
|
|
alias la 'ls -A'
|
|
alias l 'ls -CF'
|
|
alias lll 'ls --color=always -alF | less -R'
|
|
|
|
## Git
|
|
alias gu "git pull --all"
|
|
alias gp "git push --all; git push --tags"
|
|
alias gc "git commit"
|
|
alias gca "git commit -a"
|
|
alias gd "git diff"
|
|
alias gst "git status"
|
|
alias ga "git add -A"
|
|
alias gl "git log"
|
|
alias gt 'git tag|less'
|
|
#alias gad 'git log --pretty='"'"'%at'"'"' | while read d; do date -d "@$d"; done | awk '"'"'{print $1}'"'"' | sort | uniq -c'
|
|
|
|
## Grepping
|
|
alias findfile 'find . | grep -v .svn | grep -v .hg | grep -v .git | grep'
|
|
alias findphp 'find . -name "*.php" | xargs grep --color=auto'
|
|
alias findjs 'find . -name "*.js" | xargs grep --color=auto'
|
|
alias findcss 'find . -name "*.css" | xargs grep --color=auto'
|
|
alias findpy 'find . -name "*.py" | xargs grep --color=auto'
|
|
alias findyaml 'find . -name "*.yaml" -o -name "*.yml" -o -name "*.eyaml" -o -name "*.eyml" | xargs grep --color=auto'
|
|
function grepl
|
|
grep --color=always -ir $argv | less -R
|
|
end
|
|
|
|
## Various
|
|
alias tmux 'tmux -2'
|
|
alias tmux_reload "tmux source-file ~/.tmux.conf"
|
|
alias tmux_takeover "tmux detach -a"
|
|
|
|
alias mkvirtualenv3 "mkvirtualenv --python=`which python3`"
|
|
alias pip_upgrade "pip freeze --local | grep -v '^\-e' | cut -d = -f 1 | xargs pip install -U"
|
|
|
|
alias pypi_up 'python setup.py register sdist --formats=zip upload'
|
|
|
|
alias youtube-dl 'youtube-dl -t -f bestvideo+bestaudio/best --merge-output-format mp4'
|
|
|
|
alias weather 'ansiweather'
|