diff options
author | Ryan Kavanagh <rak@rak.ac> | 2022-08-15 11:33:42 -0400 |
---|---|---|
committer | Ryan Kavanagh <rak@rak.ac> | 2022-08-15 11:33:42 -0400 |
commit | 50f8dc85543d1fc9b312ceb2e12269354602d8e1 (patch) | |
tree | 3069fa896e8d49155dc9529caec8d8c68832144e /dot_emacs | |
parent | wpa_supplicant (diff) |
Move general emacs customizations under :custom
Diffstat (limited to 'dot_emacs')
-rw-r--r-- | dot_emacs | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -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)) |