add bash configuration
This commit is contained in:
18
.bash_aliases
Normal file
18
.bash_aliases
Normal 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
|
||||
}
|
Reference in New Issue
Block a user