Skip to content

Commit

Permalink
Sort custom variables in ns leaf
Browse files Browse the repository at this point in the history
1. Separate section by key customization and others.
2. Reorder each section alphabetically or by meaning.
  • Loading branch information
elim committed Oct 18, 2019
1 parent 05e8adf commit c289196
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions init.el
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit c289196

Please sign in to comment.