summaryrefslogtreecommitdiff
path: root/init.org
diff options
context:
space:
mode:
Diffstat (limited to 'init.org')
-rw-r--r--init.org16
1 files changed, 6 insertions, 10 deletions
diff --git a/init.org b/init.org
index 0d5e3a1..6d92bea 100644
--- a/init.org
+++ b/init.org
@@ -154,8 +154,7 @@ Emacs defaults are hostile to most people. They are what kept me from using Ema
I’m easily confused by the way the cursor (point) keeps jumping around when scrolling by pages. Let the cursor keep its screen position constant even when scrolling by full screens and don’t jump around when scrolling.
#+BEGIN_SRC elisp
-(setq redisplay-dont-pause t
- scroll-margin 7
+(setq scroll-margin 7
scroll-step 1
scroll-conservatively 10000
scroll-preserve-screen-position 1)
@@ -748,7 +747,7 @@ TODO: here’s the rest of my shell configuration:
(ido-mode 1)
(ido-vertical-mode 1)
(setq ido-vertical-define-keys 'C-n-and-C-p-only)
-(setq ido-ubiquitous-max-items 50000)
+(setq ido-cr+-max-items 50000)
;; hit ~ to go straight to the home directory in ido mode
(add-hook 'ido-setup-hook
(lambda ()
@@ -1247,8 +1246,8 @@ TODO: this is a big blob of email configuration. Document this properly!
(setq sendmail-program "~/.guix-profile/bin/msmtp")
;; Crypto
-(setq mml2015-encrypt-to-self t)
-(setq mml2015-sign-with-sender t)
+(setq mml-secure-openpgp-encrypt-to-self t)
+(setq mml-secure-openpgp-sign-with-sender t)
(add-hook 'mu4e-compose-mode-hook
(defun my/maybe-reply-encrypted ()
@@ -1412,7 +1411,7 @@ When I’m using the workstation in the office, all I want is the work context.
#+BEGIN_SRC elisp
(setq mu4e-contexts
- (if (string= system-name (rot13 "ovzfo-flf02.zqp-oreyva.arg"))
+ (if (string= (system-name) (rot13 "ovzfo-flf02.zqp-oreyva.arg"))
(list my/mu4e-context-work)
(list my/mu4e-context-private
my/mu4e-context-coderdojo
@@ -1485,9 +1484,6 @@ This is even more stuff to be done after initialising packages. I still need to
;; ediff settings
(setq ediff-diff-options "-w")
-;; cause Emacs to fully redraw the display *before* it processes queued input events.
-(setq redisplay-dont-pause t)
-
;; fewer backslashes in regexp builder
(require 're-builder)
(setq reb-re-syntax 'string)
@@ -1728,7 +1724,7 @@ Having defined named code blocks in the sections above we can finally put them a
<<initial-after-packages>>
<<org-mode-lazy>>
<<magit-lazy>>
-(when (not (string= system-name (rot13 "ovzfo-flf02.zqp-oreyva.arg")))
+(when (not (string= (system-name) (rot13 "ovzfo-flf02.zqp-oreyva.arg")))
<<lilypond>>
)
<<modeline>>