diff --git a/.bashrc b/.bashrc new file mode 100644 index 0000000..214c1f2 --- /dev/null +++ b/.bashrc @@ -0,0 +1,13 @@ +# If not running interactively, don't do anything +[[ $- != *i* ]] && return + +alias ls='ls --color=auto' +alias lah='ls -lah' +alias la='ls -a' + +alias count-commits='echo $(git log --oneline | wc -l) commits' + +export TERM=alacritty +export EDITOR=vim +export VISUAL=vim + diff --git a/bootstrap.sh b/bootstrap.sh index 6feb035..e11a07f 100644 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -1,5 +1,7 @@ #!/bin/bash +ln -s $PWD/.bashrc $HOME/.bashrc + # Link .vimrc to home directory ln -s $PWD/.vimrc $HOME/.vimrc