aboutsummaryrefslogtreecommitdiff
path: root/dot_emacs
diff options
context:
space:
mode:
authorRyan Kavanagh <rak@rak.ac>2022-08-15 11:33:42 -0400
committerRyan Kavanagh <rak@rak.ac>2022-08-15 11:33:42 -0400
commit50f8dc85543d1fc9b312ceb2e12269354602d8e1 (patch)
tree3069fa896e8d49155dc9529caec8d8c68832144e /dot_emacs
parentwpa_supplicant (diff)
Move general emacs customizations under :custom
Diffstat (limited to 'dot_emacs')
-rw-r--r--dot_emacs5
1 files changed, 2 insertions, 3 deletions
diff --git a/dot_emacs b/dot_emacs
index 955b31f..210982c 100644
--- a/dot_emacs
+++ b/dot_emacs
@@ -24,15 +24,14 @@
(before-save . whitespace-cleanup))
:bind ; key bindings
(("C-x a r" . align-regexp))
- :custom ; options set by customize-variable
- (inhibit-startup-screen t)
- (default-input-method "TeX")
:config ; executed after package is loaded
(defadvice ; align-regexp should use spaces.
align-regexp
(around align-regexp-with-spaces activate)
(let ((indent-tabs-mode nil)) ad-do-it))
:custom
+ (inhibit-startup-screen t)
+ (default-input-method "TeX")
(face-font-family-alternatives
(append '(("Spleen 16x32" "Ubuntu Mono" "FreeMono" "Liberation Mono"))
face-font-family-alternatives))