add bash configuration

This commit is contained in:
Zykino
2019-05-27 20:23:50 +02:00
parent 557f79eec1
commit bd91683510
2 changed files with 131 additions and 0 deletions

18
.bash_aliases Normal file
View File

@ -0,0 +1,18 @@
# Path aliases definition.
# Those are computer dependent so take care to adapt them
export RUST_SRC_PATH=/home/pi/.rustup/toolchains/stable-armv7-unknown-linux-gnueabihf/lib/rustlib/src/rust/src
# ===
# Other not comptuter dependent
export EDITOR=vim;
alias ll='ls -alhF'
# Go inside the directory you just created
function mkcd {
mkdir -p $1
cd $1
}