dotfiles/config/shell/commonrc

36 lines
1.2 KiB
Plaintext
Raw Normal View History

2019-04-14 17:41:33 +00:00
#!/usr/bin/env sh
#
# Bash / ZSH aliases and customizations
#
# Shell options
HISTSIZE=100000
HISTFILE="$HOME/.cache/shell_history"
## COMMAND CONFIGURATION
# Completion for existing commands
alias cp="cp -i --reflink=auto"
2019-06-11 04:28:58 +00:00
alias grep="grep --color=auto"
2019-04-14 17:41:33 +00:00
alias dd='dd status=progress'
2019-05-12 14:03:20 +00:00
alias rm='rm -v --one-file-system'
2019-04-14 17:41:33 +00:00
alias free='free -m'
2019-06-03 19:03:41 +00:00
alias diff='diff --color=auto'
2019-04-14 17:41:33 +00:00
alias dmesg='dmesg --ctime'
alias wget='wget --hsts-file $HOME/.cache/wget-hsts'
2019-04-14 17:41:33 +00:00
# [ -f ~/.local/bin/colorSchemeApplyFzf ] && . ~/.local/bin/colorSchemeApplyFzf # Only applies RGB colors...
POWERLINE_GO_DEFAULT_OPTS=(-colorize-hostname -max-width 25 -cwd-max-dir-size 10 -modules 'user,host,venv,cwd,perms,git' -modules-right 'jobs,exit,duration,load') # For reading by shell profiles
FZF_DEFAULT_OPTS="--height 40% --layout=default"
2019-04-14 17:41:33 +00:00
FZF_CTRL_T_OPTS="--preview '[[ -d {} ]] && ls -l --color=always {} || [[ \$(file --mime {}) =~ binary ]] && file --brief {} || (highlight -O ansi -l {} || coderay {} || rougify {} || cat {}) 2> /dev/null | head -500'"
FZF_COMPLETION_OPTS="${FZF_CTRL_T_OPTS}"
## FUNCTIONS
## MISC
2020-01-18 22:17:09 +00:00
[ -f $HOME/.local/share/broot/launcher/bash/1 ] && . $HOME/.local/share/broot/launcher/bash/1
2019-04-25 20:54:51 +00:00
trysource ~/.config/gscripts/gprofile