Julio Biason
4 years ago
6 changed files with 38 additions and 0 deletions
@ -0,0 +1,10 @@
|
||||
# Rust replacements |
||||
if hash exa 2> /dev/null; |
||||
then |
||||
alias ls="exa" |
||||
fi |
||||
|
||||
if hash bat 2> /dev/null; |
||||
then |
||||
alias cat="bat" |
||||
fi |
@ -0,0 +1,7 @@
|
||||
## Cargo on path |
||||
|
||||
if ! [[ "$PATH" =~ "$HOME/.cargo.bin:" ]] |
||||
then |
||||
PATH="$HOME/.cargo/bin:$PATH" |
||||
fi |
||||
export PATH |
@ -0,0 +1,3 @@
|
||||
# History size |
||||
HISTSIZE=20000 |
||||
HISTFILESIZE=40000 |
@ -0,0 +1,6 @@
|
||||
# Scotty |
||||
|
||||
if hash scotty 2> /dev/null; |
||||
then |
||||
source <(scotty init bash) |
||||
fi |
@ -0,0 +1,6 @@
|
||||
# Starship prompt |
||||
|
||||
if hash starship 2> /dev/null; |
||||
then |
||||
eval "$(starship init bash)" |
||||
fi |
Loading…
Reference in new issue