diff --git a/core/core-projects.el b/core/core-projects.el index e2920934b..3f655e657 100644 --- a/core/core-projects.el +++ b/core/core-projects.el @@ -67,7 +67,6 @@ Emacs.") projectile-project-root-files '("TAGS") projectile-project-root-files-top-down-recurring '(".svn" "Makefile")) - ;; a more generic project root file (push (abbreviate-file-name doom-local-dir) projectile-globally-ignored-directories) ;; Disable commands that won't work, as is, and that Doom already provides a diff --git a/modules/email/mu4e/README.org b/modules/email/mu4e/README.org index 06c43b859..102135795 100644 --- a/modules/email/mu4e/README.org +++ b/modules/email/mu4e/README.org @@ -69,11 +69,13 @@ environment.systemPackages = with pkgs; [ [[https://github.com/Emiller88/dotfiles/blob/master/modules/shell/mail.nix][An example of setting up mbsync with home-manager]] ** openSUSE +Remove ~#~ in ~#sync_program=offlineimap~ to choose ~offlineimap~ instead of +~mbsync~. -Remove ~#~ in ~#sync_program=offlineimap~ to choose ~offlineimap~ instead of ~mbsync~. #+BEGIN_SRC sh :dir /sudo:: sync_program=isync # mbsync #sync_program=offlineimap + sudo zypper install maildir-utils $sync_programm #+END_SRC diff --git a/modules/lang/latex/README.org b/modules/lang/latex/README.org index 209af8708..173744725 100644 --- a/modules/lang/latex/README.org +++ b/modules/lang/latex/README.org @@ -7,6 +7,7 @@ - [[#description][Description]] - [[#module-flags][Module Flags]] - [[#plugins][Plugins]] +- [[#prerequisites][Prerequisites]] - [[#features][Features]] - [[#customization][Customization]] - [[#specifying-the-location-of-a-bibtex-file--corresponding-pdfs][Specifying the location of a bibtex file & corresponding PDFs]] @@ -38,6 +39,8 @@ Provide a helping hand when working with LaTeX documents. + [[https://github.com/vspinu/company-math][company-math]]* + [[https://github.com/tmalsburg/helm-bibtex][ivy-bibtex]]* or [[https://github.com/tmalsburg/helm-bibtex][helm-bibtex]]* +* TODO Prerequisites + * TODO Features * Customization diff --git a/modules/ui/popup/autoload/popup.el b/modules/ui/popup/autoload/popup.el index 30159d815..5979ca636 100644 --- a/modules/ui/popup/autoload/popup.el +++ b/modules/ui/popup/autoload/popup.el @@ -334,7 +334,7 @@ Any non-nil value besides the above will be used as the raw value for '(+popup-display-buffer-stacked-side-window-fn)) (display-buffer-alist +popup--display-buffer-alist) (buffer (current-buffer))) - (push (+popup--make "." +popup-defaults) display-buffer-alist) + (push (+popup-make-rule "." +popup-defaults) display-buffer-alist) (bury-buffer) (pop-to-buffer buffer))) diff --git a/modules/ui/popup/autoload/settings.el b/modules/ui/popup/autoload/settings.el index 7478b362e..15a39daf7 100644 --- a/modules/ui/popup/autoload/settings.el +++ b/modules/ui/popup/autoload/settings.el @@ -14,7 +14,7 @@ "Default properties for popup rules defined with `set-popup-rule!'.") ;;;###autoload -(defun +popup--make (predicate plist) +(defun +popup-make-rule (predicate plist) (if (plist-get plist :ignore) (list predicate nil) (let* ((plist (append plist +popup-defaults)) @@ -160,7 +160,7 @@ used. \(fn PREDICATE &key IGNORE ACTIONS SIDE SIZE WIDTH HEIGHT SLOT VSLOT TTL QUIT SELECT MODELINE AUTOSAVE PARAMETERS)" (declare (indent defun)) - (push (+popup--make predicate plist) +popup--display-buffer-alist) + (push (+popup-make-rule predicate plist) +popup--display-buffer-alist) (when (bound-and-true-p +popup-mode) (setq display-buffer-alist +popup--display-buffer-alist)) +popup--display-buffer-alist) @@ -183,7 +183,7 @@ Example: (declare (indent 0)) (dolist (rules rulesets) (dolist (rule rules) - (push (+popup--make (car rule) (cdr rule)) + (push (+popup-make-rule (car rule) (cdr rule)) +popup--display-buffer-alist))) (when (bound-and-true-p +popup-mode) (setq display-buffer-alist +popup--display-buffer-alist))