cccccache !

This commit is contained in:
Geoffrey Frogeye 2017-04-22 18:04:17 +02:00
parent ec3b18f34c
commit a5a3ae373c
3 changed files with 52 additions and 6 deletions

9
bashrc
View file

@ -15,10 +15,9 @@ export VISUAL=vim
export BROWSER=qutebrowser
# Some programs need those changes
if [ -d $HOME/.gem/ruby ]; then
ls $HOME/.gem/ruby | while read rubyVer; do
export PATH="$PATH:$HOME/.gem/ruby/$rubyVer/bin/"
done
export PATH="/usr/lib/ccache/bin/:$PATH"
if [ -d $HOME/.gem/ruby/2.4.0/bin ]; then
export PATH="$HOME/.gem/ruby/2.4.0/bin/:$PATH"
fi
#export PATH="$(echo "$PATH" | sed 's|:|\n|g' | sort | uniq | tr '\n' ':' | sed 's|:$||')"
export JAVA_FONTS=/usr/share/fonts/TTF
@ -29,7 +28,7 @@ export XDG_CONFIG_HOME=$HOME/.config
# ALIASES
# Completion for existing commands
export LS_OPTIONS='--group-directories-first --time-style=+"%d/%m/%Y %H:%M" --color=auto --classify --human-readable'
export LS_OPTIONS='--group-directories-first --time-style=+"%d/%m/%Y %H:%M:%S" --color=auto --classify --human-readable'
alias ls="ls $LS_OPTIONS"
alias grep='grep --color=tty -d skip'
alias mkdir='mkdir -v'