aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2021-09-16 09:00:05 -0700
committerGravatar Tom Willemse2021-09-16 09:00:05 -0700
commit574284ca78052e44f45d240fa6e06dc7ef4ca971 (patch)
tree75a22e134b1448dcaa1172ac402569af3aca572d
parenta82ee89a23733ed8f7960e659192309b007831ac (diff)
downloademacs-config-574284ca78052e44f45d240fa6e06dc7ef4ca971.tar.gz
emacs-config-574284ca78052e44f45d240fa6e06dc7ef4ca971.zip
[oni-core] Add ‘mixed-pitch’ mode to Info
-rw-r--r--oni-core.el9
1 files changed, 5 insertions, 4 deletions
diff --git a/oni-core.el b/oni-core.el
index 12bc3a1..de1a2a1 100644
--- a/oni-core.el
+++ b/oni-core.el
@@ -4,8 +4,8 @@
;; Author: Tom Willemse <tom@ryuslash.org>
;; Keywords: local
-;; Version: 2021.0823.214515
-;; Package-Requires: (oni-data-dir oni-embrace oni-hydra expand-region multiple-cursors gcmh diminish ws-butler which-key insert-char-preview dashboard)
+;; Version: 2021.0916.084918
+;; Package-Requires: (oni-data-dir oni-embrace oni-hydra expand-region multiple-cursors gcmh diminish ws-butler which-key insert-char-preview dashboard mixed-pitch)
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
@@ -192,12 +192,13 @@ _s_: String list"
(setq-default truncate-lines t)
(setq-default fill-column 80)
+(add-hook 'Info-mode-hook 'mixed-pitch-mode)
+(add-hook 'after-save-hook 'executable-make-buffer-file-executable-if-script-p)
+(add-hook 'auto-save-hook #'oni-core--ensure-autosave-directory-exists)
(add-hook 'before-save-hook 'time-stamp)
(add-hook 'electric-indent-local-mode-hook #'oni-core--switch-newline-keys)
(add-hook 'minibuffer-setup-hook 'electric-pair-local-mode)
(add-hook 'prog-mode-hook 'goto-address-prog-mode)
-(add-hook 'auto-save-hook #'oni-core--ensure-autosave-directory-exists)
-(add-hook 'after-save-hook 'executable-make-buffer-file-executable-if-script-p)
(global-set-key (kbd "C-M-SPC") 'er/expand-region)
(global-set-key (kbd "C-S-b") 'windmove-left)