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.
|
Additionally, I want to automatically highlight errors whenever =flyspell-mode= is enabled.
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(add-hook 'flyspell-mode-hook 'flyspell-buffer)
|
;; (add-hook 'flyspell-mode-hook 'flyspell-buffer)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
** progmode
|
** progmode
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+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)
|
(advice-add #'org-mks :around #'nd/org-capture-window-advice)
|
||||||
#+END_SRC
|
#+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.
|
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
|
#+BEGIN_SRC emacs-lisp
|
||||||
(setq org-html-doctype "html5")
|
(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)
|
mu4e-use-fancy-chars nil)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
*** citing
|
*** 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
|
#+BEGIN_SRC emacs-lisp
|
||||||
;; necessary for the header macros below
|
;; necessary for the header macros below
|
||||||
(require 'nnheader)
|
(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-library-path (expand-file-name "~/BibTeX/pdf")
|
||||||
bibtex-completion-pdf-field "File"))
|
bibtex-completion-pdf-field "File"))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
** ebib
|
||||||
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
(use-package ebib
|
||||||
|
:ensure t)
|
||||||
|
#+END_SRC
|
||||||
** shell
|
** shell
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(defadvice ansi-term (before force-bash)
|
(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
|
:after evil
|
||||||
:init
|
:init
|
||||||
(setq evil-collection-mode-list
|
(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)
|
(setq evil-collection-setup-minibuffer t)
|
||||||
:config
|
:config
|
||||||
(evil-collection-init))
|
(evil-collection-init))
|
||||||
|
|
Loading…
Reference in New Issue