]> git.armaanb.net Git - config.org.git/blobdiff - config.org
Add pdf-tools
[config.org.git] / config.org
index 180283f48385d55f9be76e86a445960763d9d2dd..1bab9edd6e5481d0d76e65333e2bf20c958c1b92 100644 (file)
@@ -140,8 +140,11 @@ When starting a key chord, show possible future steps after 0.3 seconds.
 ** Visual line mode
 Soft wrap words and do operations by visual lines except in programming modes.
 #+begin_src emacs-lisp
-  (visual-line-mode 1)
-  (add-hook 'prog-mode-hook 'visual-line-mode 0)
+  (global-visual-line-mode 1)
+  (dolist (hook '(prog-mode-hook
+                  calc-trail-mode-hook
+                  mu4e-headers-mode-hook))
+    (add-hook hook (lambda () (visual-line-mode -1))))
 #+end_src
 ** Display number of matches in search
 #+begin_src emacs-lisp
@@ -248,7 +251,6 @@ Define templates for lots of common structure elements. Mostly just used within
     (add-to-list 'org-structure-template-alist '("el" . "src emacs-lisp"))
     (add-to-list 'org-structure-template-alist '("sp" . "src conf :tangle ~/.spectrwm.conf"))
     (add-to-list 'org-structure-template-alist '("ash" . "src shell :tangle ~/.config/ash/ashrc"))
-    (add-to-list 'org-structure-template-alist '("ipy" . "src python :tangle ~/.ipython/"))
     (add-to-list 'org-structure-template-alist '("pi" . "src conf :tangle ~/.config/picom/picom.conf"))
     (add-to-list 'org-structure-template-alist '("git" . "src conf :tangle ~/.gitconfig"))
     (add-to-list 'org-structure-template-alist '("du" . "src conf :tangle ~/.config/dunst/dunstrc"))
@@ -524,6 +526,11 @@ Still experimenting with this setup. Not sure if I will keep it, but it works we
 
   (global-set-key (kbd "C-c c") 'acheam-calendar)
 #+end_src
+** PDF reader
+#+begin_src emacs-lisp
+  (use-package pdf-tools
+    :hook (pdf-view-mode . pdf-view-midnight-minor-mode))
+#+end_src
 * Emacs IDE
 ** Python formatting
 #+begin_src emacs-lisp
@@ -1028,12 +1035,6 @@ Use the vi editing mode. I still haven't found a good way to show visual feedbac
   alias cal="cal -3 --color=auto"
   alias bc='bc -l'
 #+end_src
-** IPython
-#+begin_src python :tangle ~/.ipython/profile_default/ipython_config.py
-  c.TerminalInteractiveShell.editing_mode = 'vi'
-  c.InteractiveShell.colors = 'linux'
-  c.TerminalInteractiveShell.confirm_exit = False
-#+end_src
 ** MPV
 Make MPV play a little bit smoother.
 #+begin_src conf :tangle ~/.config/mpv/mpv.conf