refactor bashconfigs
This commit is contained in:
parent
f704456042
commit
19244e2b9e
3 changed files with 11 additions and 5 deletions
13
bash/.bashrc
13
bash/.bashrc
|
@ -15,8 +15,13 @@ export PATH
|
|||
# Uncomment the following line if you don't like systemctl's auto-paging feature:
|
||||
# export SYSTEMD_PAGER=
|
||||
|
||||
# Prompt
|
||||
export PS1="\u@\h:\[\e[0;92m\]\w\[\e[0m\]$ "
|
||||
|
||||
# User specific aliases and functions
|
||||
alias luamk="latexmk -pdf -pvc -interaction=nonstopmode -pdflatex=lualatex"
|
||||
if [ -d ~/.bashrc.d ]; then
|
||||
for rc in ~/.bashrc.d/*; do
|
||||
if [ -f "$rc" ]; then
|
||||
. "$rc"
|
||||
fi
|
||||
done
|
||||
fi
|
||||
|
||||
unset rc
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue