dotfiles/bashrc

148 lines
3.7 KiB
Bash
Raw Normal View History

#
# ~/.bashrc
#
2015-07-12 18:29:52 +02:00
# ENVIRONMENT VARIABLES
2016-03-14 13:49:51 +01:00
# Favourite commands
2016-02-25 20:35:44 +01:00
export PAGER=less
2015-07-12 18:29:52 +02:00
export EDITOR=vim
2017-02-13 06:40:24 +01:00
export VISUAL=vim
export BROWSER=qutebrowser
2015-07-12 18:29:52 +02:00
# Some programs need those changes
2017-04-22 18:04:17 +02:00
export PATH="/usr/lib/ccache/bin/:$PATH"
2018-01-30 19:07:55 +01:00
GEM_HOME=$(ruby -e 'puts Gem.user_dir' 2> /dev/null)
if [ $? -eq 0 ]; then
GEM_PATH=$GEM_HOME
export PATH="$PATH:$GEM_HOME/bin"
2017-02-07 09:03:18 +01:00
fi
2017-09-17 13:36:17 +02:00
if [ -d /data/data/com.termux/ ]; then
export PATH="$HOME/.termux/scripts:$HOME/.termux/bin:$PATH"
fi
#export PATH="$(echo "$PATH" | sed 's|:|\n|g' | sort | uniq | tr '\n' ':' | sed 's|:$||')"
2015-07-12 18:29:52 +02:00
export JAVA_FONTS=/usr/share/fonts/TTF
export ANDROID_HOME=/opt/android-sdk
2016-12-18 15:10:40 +01:00
export GOPATH=$HOME/.go
2017-09-01 18:39:06 +02:00
export PATH=$GOPATH/bin:$PATH
export XDG_CONFIG_HOME=$HOME/.config
2017-06-14 08:06:40 +02:00
export ARDUINO=/usr/share/arduino
export ARDUINO_DIR=$ARDUINO
export ARDMK_VENDOR=archlinux-arduino
2017-09-17 18:42:53 +02:00
export PYTHONSTARTUP=$HOME/.config/pythonstartup.py
2015-07-12 18:29:52 +02:00
# ALIASES
2015-07-12 18:29:52 +02:00
# Completion for existing commands
2017-09-01 18:40:03 +02:00
export LS_OPTIONS='--group-directories-first --time-style=+"%d/%m/%Y %H:%M:%S" --color=auto --file-type --human-readable'
2016-05-12 19:39:38 +02:00
alias ls="ls $LS_OPTIONS"
2015-07-12 18:29:52 +02:00
alias grep='grep --color=tty -d skip'
2016-05-12 19:39:38 +02:00
alias mkdir='mkdir -v'
alias cp="cp -i"
alias mv="mv -iv"
alias dd='dd status=progress'
alias rm='rm -Iv --one-file-system'
alias free='free -m'
alias df='df -h'
2016-05-14 17:31:21 +02:00
alias pacman='pacman --color auto'
2017-06-14 08:06:40 +02:00
alias dmesg='dmesg --ctime'
# Frequent mistakes
alias systemclt=systemctl
# Shortcuts for commonly used commands
alias ll="ls -l $LS_OPTIONS"
alias la="ls -la $LS_OPTIONS"
alias al=sl
2016-12-08 21:43:45 +01:00
alias x='startx; logout'
2016-12-11 23:13:54 +01:00
alias s='sudo -s -E'
alias po='eval $(proxy off)'
alias nw="sudo systemctl restart NetworkManager"
alias mc="machines"
2017-08-22 07:57:52 +02:00
alias tracefiles="strace -f -t -e trace=file"
2017-06-14 08:06:40 +02:00
alias vpn="sudo systemctl start openvpn-client@$HOSTNAME"
alias vpno="sudo systemctl stop openvpn-client@$HOSTNAME"
alias vpns="sudo systemctl status openvpn-client@$HOSTNAME"
alias vpnr="sudo systemctl restart openvpn-client@$HOSTNAME"
# Superseding commands with better ones if they are present
if which vim &> /dev/null; then
alias vi='vim'
fi
if which gopass &> /dev/null; then
alias pass='gopass'
2015-09-24 18:08:29 +02:00
fi
if which wakeonlan &> /dev/null; then
alias wol='wakeonlan'
fi
2015-09-24 18:08:29 +02:00
# SHELL CUSTOMIZATION
complete -cf sudo
shopt -s cdspell
shopt -s checkwinsize
shopt -s cmdhist
shopt -s dotglob
shopt -s expand_aliases
shopt -s extglob
shopt -s histappend
shopt -s hostcomplete
2017-06-14 08:06:40 +02:00
export HISTSIZE=100000
export HISTFILESIZE=${HISTSIZE}
export HISTCONTROL=ignoreboth
# PROMPT CUSTOMIZATION
if [[ $USER == 'root' ]]; then
col=31;
elif [[ $USER == 'geoffrey' || $USER == 'gbontoux' || $USER == 'gpreud' ]]; then
col=32;
else
col=33;
2017-01-16 20:17:09 +01:00
fi
2017-02-12 15:14:51 +01:00
export PS1="\[\e]2;\u@\h \w\a\]\[\e[0;37m\][\[\e[0;${col}m\]\u\[\e[0;37m\]@\[\e[0;34m\]\h \[\e[0;36m\]\W\[\e[0;37m\]]\$\[\e[0m\] "
export PS2="> "
export PS3="+ "
export PS4="- "
# CUSTOM SCRIPTS
2017-09-01 18:39:06 +02:00
export PATH="$HOME/.bin/:$HOME/.scripts/:$PATH"
2017-02-12 15:14:51 +01:00
[ -f ~/.gscripts/gprofile ] && source ~/.gscripts/gprofile
2017-01-16 20:17:09 +01:00
# UTILITIES
2015-07-12 18:29:52 +02:00
# Bash completion
[ -f /etc/bash_completion ] && . /etc/bash_completion
2015-07-12 18:29:52 +02:00
# Bad day mood-saver
2017-06-21 20:05:05 +02:00
function fuck {
2017-06-14 09:26:25 +02:00
if which thefuck &> /dev/null
then
eval $(thefuck --alias)
2017-06-27 09:19:26 +02:00
fuck $@
2017-06-14 09:26:25 +02:00
else
echo "thefuck is not installed on this system."
fi
}
alias FUCK='fuck'
# Node Version Manager
2017-06-21 20:05:05 +02:00
function nvm {
2017-06-27 09:19:26 +02:00
export NVM_DIR="$HOME/.nvm"
2017-06-14 09:26:25 +02:00
if [ -s "$NVM_DIR/nvm.sh" ]
then
. "$NVM_DIR/nvm.sh"
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"
2017-06-27 09:19:26 +02:00
nvm $@
2017-06-14 09:26:25 +02:00
else
echo "NVM is not installed on this system."
fi
}
2015-07-12 18:29:52 +02:00
2017-02-12 15:14:51 +01:00
# Command not found handlers
[ -r /usr/share/doc/pkgfile/command-not-found.bash ] && . /usr/share/doc/pkgfile/command-not-found.bash # Arch
[ -r /etc/profile.d/cnf.sh ] && . /etc/profile.d/cnf.sh # Arch (alternative, for Manjaro mostly)