2 Commits 64194a9673 ... 9af2118863

Author SHA1 Message Date
  Emilia L.K. Blåsten 9af2118863 Make it so it's easier to select commands in helm-M-x 6 months ago
  Emilia L.K. Blåsten a883188911 Fix running multiple commands after (if ...) 6 months ago
1 changed files with 12 additions and 9 deletions
  1. 12 9
      emacs

+ 12 - 9
emacs

@@ -160,6 +160,8 @@
 (use-package helm
   :ensure t
   :bind (("M-x" . helm-M-x))
+  :custom
+  (helm-move-to-line-cycle-in-source nil)
   :config
   (helm-mode 1))
 (winner-mode t) ; C-c ←/→ for going between used window configurations
@@ -267,15 +269,16 @@
 (add-to-list 'auto-mode-alist '("\\.m\\'" . octave-mode))
 (setq bibtex-align-at-equal-sign t) ; align = in bibtex using C-c C-q
 (if (display-graphic-p)
-    (use-package pdf-tools
-      :ensure t
-      :config
-      (pdf-tools-install :no-query))
-    (use-package org-noter
-      :ensure t
-      :after (pdf-tools)
-      :custom
-      (org-noter-notes-search-path (list bibliography-notes))))
+    (progn
+      (use-package pdf-tools
+        :ensure t
+        :config
+        (pdf-tools-install :no-query))
+      (use-package org-noter
+        :ensure t
+        :after (pdf-tools)
+        :custom
+        (org-noter-notes-search-path (list bibliography-notes)))))
 (use-package tex
   :ensure auctex
   :custom