From c289196adf83077c331862c77cc3abca8d02f1ce Mon Sep 17 00:00:00 2001 From: Takeru Naito Date: Fri, 18 Oct 2019 12:07:20 +0900 Subject: [PATCH] Sort custom variables in ns leaf 1. Separate section by key customization and others. 2. Reorder each section alphabetically or by meaning. --- init.el | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/init.el b/init.el index d69fd65..a47719e 100644 --- a/init.el +++ b/init.el @@ -114,13 +114,15 @@ (elim:set-text-height 140)))) (leaf ns :if (featurep 'ns) - :custom ((ns-pop-up-frames . nil) - (ns-antialias-text . t) - (ns-command-modifier . 'meta) - (ns-alternate-modifier . 'meta) - (ns-use-native-fullscreen . nil) - (ns-right-alternate-modifier . 'hyper) - (ns-right-command-modifier . 'super))) + :custom + ((ns-antialias-text . t) + (ns-pop-up-frames . nil) + (ns-use-native-fullscreen . nil) + + (ns-alternate-modifier . 'meta) + (ns-command-modifier . 'meta) + (ns-right-alternate-modifier . 'hyper) + (ns-right-command-modifier . 'super))) (leaf simple :preface (defvar elim:auto-delete-trailing-whitespace-enable-p t)