summaryrefslogtreecommitdiffstats
path: root/init.org
diff options
context:
space:
mode:
Diffstat (limited to 'init.org')
-rw-r--r--init.org20
1 files changed, 1 insertions, 19 deletions
diff --git a/init.org b/init.org
index 045845d..91d70f0 100644
--- a/init.org
+++ b/init.org
@@ -1224,6 +1224,7 @@ TODO: break this giant source block down into individual org sections.
(advice-add #'ispell-parse-output :filter-args
#'endless/replace-quote))
#+end_src
+
* Programming modes
:PROPERTIES:
:CUSTOM_ID: programming-modes
@@ -1784,25 +1785,6 @@ Also see [[https://www.emacswiki.org/emacs/rebox2][rebox2]].
(set-face-foreground 'highlight-indent-guides-top-character-face "grey40")) ; grey13 is nice too
#+end_src
-** pdf-tools
-
-#+begin_src emacs-lisp
-(use-package pdf-tools
- :defer t
- :magic ("%PDF" . pdf-view-mode)
- :config
- (setq pdf-view-resize-factor 1.05)
- (pdf-tools-install)
- :bind
- (:map pdf-view-mode-map
- ("C-s" . isearch-forward)
- ("C-r" . isearch-backward)
- ("j" . pdf-view-next-line-or-next-page)
- ("k" . pdf-view-previous-line-or-previous-page)
- ("h" . image-backward-hscroll)
- ("l" . image-forward-hscroll)))
-#+end_src
-
** typo.el
#+begin_src emacs-lisp