summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.config/nvim/init.vim4
-rwxr-xr-x.local/bin/cron/crontog2
-rwxr-xr-x.local/bin/texclear2
3 files changed, 4 insertions, 4 deletions
diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim
index 3945dcc..2bd166e 100644
--- a/.config/nvim/init.vim
+++ b/.config/nvim/init.vim
@@ -85,10 +85,10 @@ set noshowcmd
nnoremap S :%s//g<Left><Left>
" Compile document, be it groff/LaTeX/markdown/etc.
- map <leader>c :w! \| !compiler %:p<CR>
+ map <leader>c :w! \| !compiler "%:p"<CR>
" Open corresponding .pdf/.html or preview
- map <leader>p :!opout %:p<CR>
+ map <leader>p :!opout "%:p"<CR>
" Runs a script that cleans out tex build files whenever I close out of a .tex file.
autocmd VimLeave *.tex !texclear %
diff --git a/.local/bin/cron/crontog b/.local/bin/cron/crontog
index 5aba5e6..c9a640f 100755
--- a/.local/bin/cron/crontog
+++ b/.local/bin/cron/crontog
@@ -1,6 +1,6 @@
#!/bin/sh
# Toggles all cronjobs off/on.
-# Stores disabled crontabs in ~/.consaved until restored.
+# Stores disabled crontabs in ~/.config/cronsaved until restored.
([ -f "${XDG_CONFIG_HOME:-$HOME/.config}"/cronsaved ] && crontab - < "${XDG_CONFIG_HOME:-$HOME/.config}"/cronsaved && rm "${XDG_CONFIG_HOME:-$HOME/.config}"/cronsaved && notify-send "🕓 Cronjobs re-enabled.") || ( crontab -l > "${XDG_CONFIG_HOME:-$HOME/.config}"/cronsaved && crontab -r && notify-send "🕓 Cronjobs saved and disabled.")
diff --git a/.local/bin/texclear b/.local/bin/texclear
index f38f7be..4cdb02e 100755
--- a/.local/bin/texclear
+++ b/.local/bin/texclear
@@ -9,7 +9,7 @@ case "$1" in
dir=$(dirname "$file")
base="${file%.*}"
find "$dir" -maxdepth 1 -type f -regextype gnu-awk -regex "^$base\\.(4tc|xref|tmp|pyc|pyg|pyo|fls|vrb|fdb_latexmk|bak|swp|aux|log|synctex\\(busy\\)|lof|lot|maf|idx|mtc|mtc0|nav|out|snm|toc|bcf|run\\.xml|synctex\\.gz|blg|bbl)" -delete
- rm -rdf "$dir/_minted-$(basename -- $base)"
+ rm -rdf "$dir/_minted-$(basename -- "$base")"
;;
*) printf "Give .tex file as argument.\\n" ;;
esac