untabified entire conf file
This commit is contained in:
parent
72127cf1fd
commit
d7fcf4e24d
13
conf.org
13
conf.org
|
@ -452,7 +452,7 @@ Obviously I am going to use =helm= when I spellcheck something.
|
|||
|
||||
Additionally, I want to automatically highlight errors whenever =flyspell-mode= is enabled.
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(add-hook 'flyspell-mode-hook 'flyspell-buffer)
|
||||
;; (add-hook 'flyspell-mode-hook 'flyspell-buffer)
|
||||
#+END_SRC
|
||||
** progmode
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
|
@ -797,7 +797,7 @@ Capture should show up in the bottom of any currently active buffer
|
|||
|
||||
(advice-add #'org-mks :around #'nd/org-capture-window-advice)
|
||||
#+END_SRC
|
||||
** latex
|
||||
** exporting
|
||||
The default is XHTML for some reason (which few use and makes certain barbaric word processors complain). Use the much-superior html5.
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(setq org-html-doctype "html5")
|
||||
|
@ -2187,7 +2187,7 @@ If dired is to replace all other file managers it must handle devices. This func
|
|||
mu4e-use-fancy-chars nil)
|
||||
#+END_SRC
|
||||
*** citing
|
||||
The citation line should enable history filding in outlook. This is enabled by using 32 underscores followed by the addressing info of the previous message(s).
|
||||
The citation line should enable history folding in outlook. This is enabled by using 32 underscores followed by the addressing info of the previous message(s).
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
;; necessary for the header macros below
|
||||
(require 'nnheader)
|
||||
|
@ -2400,6 +2400,11 @@ Spell checking is generally a good idea when writing to pointy-haired bosses.
|
|||
bibtex-completion-library-path (expand-file-name "~/BibTeX/pdf")
|
||||
bibtex-completion-pdf-field "File"))
|
||||
#+END_SRC
|
||||
** ebib
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(use-package ebib
|
||||
:ensure t)
|
||||
#+END_SRC
|
||||
** shell
|
||||
#+begin_src emacs-lisp
|
||||
(defadvice ansi-term (before force-bash)
|
||||
|
@ -2602,7 +2607,7 @@ Most packages that don't have an evil version are in this one. I don't like surp
|
|||
:after evil
|
||||
:init
|
||||
(setq evil-collection-mode-list
|
||||
'(dired ediff flycheck company which-key helm minibuffer mu4e ediff term))
|
||||
'(company dired ediff flycheck helm minibuffer mu4e term which-key))
|
||||
(setq evil-collection-setup-minibuffer t)
|
||||
:config
|
||||
(evil-collection-init))
|
||||
|
|
Loading…
Reference in New Issue