19 lines
360 B
Bash
19 lines
360 B
Bash
|
# 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
|
||
|
}
|