From 255ddd355a569cb45434af554c59999115752b49 Mon Sep 17 00:00:00 2001 From: xerus2000 <27jf@pm.me> Date: Thu, 11 Mar 2021 10:25:53 +0100 Subject: [PATCH] config: tiny shell adjustments --- .config/doom/config.el | 2 +- .config/shell/functions | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/doom/config.el b/.config/doom/config.el index 3a667a4..822c843 100644 --- a/.config/doom/config.el +++ b/.config/doom/config.el @@ -100,7 +100,7 @@ ;; Exporting - https://orgmode.org/manual/Export-Settings.html (setq org-latex-pdf-export "latexmk -outdir=/tmp/latexmk -f -pdf %F; mv %f /tmp/latexmk; mv /tmp/latexmk/%b.pdf %o") (setq org-latex-packages-alist '(("margin=3cm" "geometry") ("avoid-all" "widows-and-orphans"))) -(setq org-export-with-sub-superscripts nil) +(setq org-export-with-sub-superscripts "{}") (setq org-export-with-tags nil) (setq org-export-with-tasks nil) diff --git a/.config/shell/functions b/.config/shell/functions index 7362eb5..b4ce99b 100644 --- a/.config/shell/functions +++ b/.config/shell/functions @@ -272,7 +272,7 @@ alias f="noglob $(test -x "$(which fd)" && echo fd || echo "fdfind") --hidden -- #alias f='find -not -path "*.sync*" -and -not \( -name daten -prune \)' #alias f1='find -mindepth 1 -maxdepth 1' -which perl-rename >/dev/null && alias lowercase='perl-rename "y/A-Z/a-z/"' || alias lowercase='rename "y/A-Z/a-z/"' +alias lowercase='tr "A-Z " "a-z-"' mkcd() { mkdir -p "$1" && cd "$1"