Minor comment/doc revision & refactors
This commit is contained in:
parent
db19241936
commit
fb13b902b0
5 changed files with 10 additions and 6 deletions
|
@ -67,7 +67,6 @@ Emacs.")
|
||||||
projectile-project-root-files '("TAGS")
|
projectile-project-root-files '("TAGS")
|
||||||
projectile-project-root-files-top-down-recurring '(".svn" "Makefile"))
|
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)
|
(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
|
;; Disable commands that won't work, as is, and that Doom already provides a
|
||||||
|
|
|
@ -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]]
|
[[https://github.com/Emiller88/dotfiles/blob/master/modules/shell/mail.nix][An example of setting up mbsync with home-manager]]
|
||||||
|
|
||||||
** openSUSE
|
** 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::
|
#+BEGIN_SRC sh :dir /sudo::
|
||||||
sync_program=isync # mbsync
|
sync_program=isync # mbsync
|
||||||
#sync_program=offlineimap
|
#sync_program=offlineimap
|
||||||
|
|
||||||
sudo zypper install maildir-utils $sync_programm
|
sudo zypper install maildir-utils $sync_programm
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
- [[#description][Description]]
|
- [[#description][Description]]
|
||||||
- [[#module-flags][Module Flags]]
|
- [[#module-flags][Module Flags]]
|
||||||
- [[#plugins][Plugins]]
|
- [[#plugins][Plugins]]
|
||||||
|
- [[#prerequisites][Prerequisites]]
|
||||||
- [[#features][Features]]
|
- [[#features][Features]]
|
||||||
- [[#customization][Customization]]
|
- [[#customization][Customization]]
|
||||||
- [[#specifying-the-location-of-a-bibtex-file--corresponding-pdfs][Specifying the location of a bibtex file & corresponding PDFs]]
|
- [[#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/vspinu/company-math][company-math]]*
|
||||||
+ [[https://github.com/tmalsburg/helm-bibtex][ivy-bibtex]]* or [[https://github.com/tmalsburg/helm-bibtex][helm-bibtex]]*
|
+ [[https://github.com/tmalsburg/helm-bibtex][ivy-bibtex]]* or [[https://github.com/tmalsburg/helm-bibtex][helm-bibtex]]*
|
||||||
|
|
||||||
|
* TODO Prerequisites
|
||||||
|
|
||||||
* TODO Features
|
* TODO Features
|
||||||
|
|
||||||
* Customization
|
* Customization
|
||||||
|
|
|
@ -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))
|
'(+popup-display-buffer-stacked-side-window-fn))
|
||||||
(display-buffer-alist +popup--display-buffer-alist)
|
(display-buffer-alist +popup--display-buffer-alist)
|
||||||
(buffer (current-buffer)))
|
(buffer (current-buffer)))
|
||||||
(push (+popup--make "." +popup-defaults) display-buffer-alist)
|
(push (+popup-make-rule "." +popup-defaults) display-buffer-alist)
|
||||||
(bury-buffer)
|
(bury-buffer)
|
||||||
(pop-to-buffer buffer)))
|
(pop-to-buffer buffer)))
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
"Default properties for popup rules defined with `set-popup-rule!'.")
|
"Default properties for popup rules defined with `set-popup-rule!'.")
|
||||||
|
|
||||||
;;;###autoload
|
;;;###autoload
|
||||||
(defun +popup--make (predicate plist)
|
(defun +popup-make-rule (predicate plist)
|
||||||
(if (plist-get plist :ignore)
|
(if (plist-get plist :ignore)
|
||||||
(list predicate nil)
|
(list predicate nil)
|
||||||
(let* ((plist (append plist +popup-defaults))
|
(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)"
|
\(fn PREDICATE &key IGNORE ACTIONS SIDE SIZE WIDTH HEIGHT SLOT VSLOT TTL QUIT SELECT MODELINE AUTOSAVE PARAMETERS)"
|
||||||
(declare (indent defun))
|
(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)
|
(when (bound-and-true-p +popup-mode)
|
||||||
(setq display-buffer-alist +popup--display-buffer-alist))
|
(setq display-buffer-alist +popup--display-buffer-alist))
|
||||||
+popup--display-buffer-alist)
|
+popup--display-buffer-alist)
|
||||||
|
@ -183,7 +183,7 @@ Example:
|
||||||
(declare (indent 0))
|
(declare (indent 0))
|
||||||
(dolist (rules rulesets)
|
(dolist (rules rulesets)
|
||||||
(dolist (rule rules)
|
(dolist (rule rules)
|
||||||
(push (+popup--make (car rule) (cdr rule))
|
(push (+popup-make-rule (car rule) (cdr rule))
|
||||||
+popup--display-buffer-alist)))
|
+popup--display-buffer-alist)))
|
||||||
(when (bound-and-true-p +popup-mode)
|
(when (bound-and-true-p +popup-mode)
|
||||||
(setq display-buffer-alist +popup--display-buffer-alist))
|
(setq display-buffer-alist +popup--display-buffer-alist))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue