about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--init.el15
1 files changed, 9 insertions, 6 deletions
diff --git a/init.el b/init.el index 26dd784..80034af 100644 --- a/init.el +++ b/init.el
@@ -369,11 +369,7 @@
369 w32-pass-rwindow-to-system nil 369 w32-pass-rwindow-to-system nil
370 w32-rwindow-modifier 'super 370 w32-rwindow-modifier 'super
371 w32-pass-apps-to-system nil 371 w32-pass-apps-to-system nil
372 w32-apps-modifier 'hyper 372 w32-apps-modifier 'hyper))
373 find-function-C-source-directory (expand-file-name
374 (concat "~/src/emacs-"
375 emacs-version
376 "/src"))))
377 373
378;;;; Etc. good defaults 374;;;; Etc. good defaults
379(setc custom-file (acdw/in-dir "custom.el") 375(setc custom-file (acdw/in-dir "custom.el")
@@ -395,7 +391,14 @@
395 echo-keystrokes 0.25 391 echo-keystrokes 0.25
396 recenter-positions '(top middle bottom) 392 recenter-positions '(top middle bottom)
397 attempt-stack-overflow-recovery nil 393 attempt-stack-overflow-recovery nil
398 attempt-orderly-shutdown-on-fatal-signal nil) 394 attempt-orderly-shutdown-on-fatal-signal nil
395 find-function-C-source-directory
396 (pcase acdw/system
397 (:work (expand-file-name (concat "~/src/emacs-"
398 emacs-version
399 "/src")))
400 (:home (expand-file-name "~/src/pkg/emacs/src/emacs-git/src"))
401 (:other nil)))
399 402
400;;;; Etc. bindings 403;;;; Etc. bindings
401(global-set-key [remap just-one-space] #'cycle-spacing) 404(global-set-key [remap just-one-space] #'cycle-spacing)