diff --git a/.config/doom/.gitignore b/.config/doom/.gitignore index 22eb440..e273441 100644 --- a/.config/doom/.gitignore +++ b/.config/doom/.gitignore @@ -1,2 +1,3 @@ local.el custom.el +user.el diff --git a/.config/doom/config.el b/.config/doom/config.el index 612d414..3413c30 100644 --- a/.config/doom/config.el +++ b/.config/doom/config.el @@ -418,7 +418,7 @@ Version 2019-11-04 2021-02-16" (interactive) (when (equal major-mode 'org-mode) (org-roam-db-sync) (let ((org-display-remote-inline-images 'skip)) (org-roam-update-org-id-locations)) (org-mode-restart))) - (my/auto-org-roam-db-sync-mode) + (if (file-exists-p org-roam-directory) (my/auto-org-roam-db-sync-mode)) ) (after! ox @@ -455,7 +455,7 @@ Version 2019-11-04 2021-02-16" (ox-extras-activate '(ignore-headlines)) (require 'ox-latex) (add-to-list 'org-latex-classes - '("article4" "\\documentclass[11pt]{article} \\usepackage{titlesec} \\titleformat{\\paragraph}{\\normalfont\\normalsize\\itshape}{\\theparagraph}{1em}{} \\titlespacing*{\\paragraph}{0pt}{2ex plus 1ex minus .2ex}{.5ex plus .2ex}" + '("article4" "\\documentclass{article} \\usepackage{titlesec} \\titleformat{\\paragraph}{\\normalfont\\normalsize\\itshape}{\\theparagraph}{1em}{} \\titlespacing*{\\paragraph}{0pt}{2ex plus 1ex minus .2ex}{.5ex plus .2ex}" ("\\section{%s}" . "\\section*{%s}") ("\\subsection{%s}" . "\\subsection*{%s}") ("\\subsubsection{%s}" . "\\subsubsection*{%s}") diff --git a/.config/doom/packages.el b/.config/doom/packages.el index 36c3892..4a078bf 100644 --- a/.config/doom/packages.el +++ b/.config/doom/packages.el @@ -64,7 +64,8 @@ (package! evil-replace-with-register) ; grrrrr (package! visual-fill-column) ; Soft line wrapping at character count -(package! activity-watch-mode) ; eagle eyes +(package! activity-watch-mode + :recipe (:host github :repo "xeruf/activity-watch-mode")) ; eagle eyes (package! togetherly) ; Collaborative editing (package! direnv) ; directory-local environment for haskell-nix things diff --git a/.config/doom/user.el b/.config/doom/user.el deleted file mode 120000 index e8ff0ad..0000000 --- a/.config/doom/user.el +++ /dev/null @@ -1 +0,0 @@ -user.el##user.janek \ No newline at end of file