Cleanup stow path

This commit is contained in:
Marco Thomas
2022-01-24 11:37:17 +01:00
parent ba1fb5cd67
commit 1f7db961d8
5 changed files with 20 additions and 14 deletions

View File

@@ -857,7 +857,7 @@ Sjoe my speling misttakes.
#+end_src
*** math
Who needs LaTeX when you can the power of unicode?
Who needs LaTeX when you can have the power of unicode?
#+begin_src emacs-lisp :tangle yes
(use-package math-symbol-lists
:straight t
@@ -917,7 +917,7 @@ Who needs LaTeX when you can the power of unicode?
("\\Gx" ) ("\\GX" ) ("\\xi" ) ("\\Xi" )
("\\Gp" ) ("\\GP" ) ("\\pi" ) ("\\Pi" )
("\\Gr" ?ρ) ("\\GR" ?Ρ) ("\\rho" ?ρ)
("\\Gs" ?σ) ("\\GS" ) ("\\sig" ?σ) ("\\Sig" )
("\\Gs" ?σ) ("\\GS" ) ("\\sigma" ?σ) ("\\Sigma" )
("\\Gt" ) ("\\GT" ?Τ) ("\\tau" )
("\\Gph" ) ("\\GPH" ) ("\\phi" ) ("\\Phi" )
("\\Gc" ) ("\\GC" ?Χ) ("\\chi" )
@@ -940,12 +940,15 @@ Built-in DocView isn't too nice to use.
Keybinds:
+ =C-s=: search, just as in =swiper=
+ =C-s= (again): forward search
+ =C=r=: backward search
+ =C-r=: backward search
#+begin_src emacs-lisp :tangle yes
(use-package pdf-tools
:straight t
:config
(define-key pdf-view-mode-map (kbd "C-s") 'isearch-forward-regexp))
(define-key pdf-view-mode-map [remap swiper] 'isearch-forward-regexp)
(define-key pdf-view-mode-map [remap evil-ex] 'pdf-view-goto-page)
(setq-default pdf-view-display-size 'fit-page)
(setq pdf-view-resize-factor 1.1))
;; load necessary things, when a PDF gets opened
(pdf-tools-install)