2018-02-14 23:16:38 -05:00
|
|
|
;;; config/default/config.el -*- lexical-binding: t; -*-
|
2017-12-23 02:27:42 -05:00
|
|
|
|
2018-12-23 23:57:29 -05:00
|
|
|
(defvar +default-minibuffer-maps
|
|
|
|
`(minibuffer-local-map
|
|
|
|
minibuffer-local-ns-map
|
|
|
|
minibuffer-local-completion-map
|
|
|
|
minibuffer-local-must-match-map
|
|
|
|
minibuffer-local-isearch-map
|
|
|
|
read-expression-map
|
|
|
|
,@(if (featurep! :completion ivy) '(ivy-minibuffer-map)))
|
|
|
|
"A list of all the keymaps used for the minibuffer.")
|
|
|
|
|
|
|
|
|
2018-12-23 23:16:03 -05:00
|
|
|
;;
|
2019-03-09 03:41:26 -05:00
|
|
|
;;; Reasonable defaults
|
2018-06-01 17:10:30 +02:00
|
|
|
|
2019-05-01 01:47:27 -04:00
|
|
|
;;;###package avy
|
|
|
|
(setq avy-all-windows nil
|
|
|
|
avy-background t)
|
|
|
|
|
|
|
|
|
2017-12-27 22:48:05 -05:00
|
|
|
(after! epa
|
2018-09-21 14:06:15 -04:00
|
|
|
(setq epa-file-encrypt-to
|
|
|
|
(or epa-file-encrypt-to
|
|
|
|
;; Collect all public key IDs with your username
|
|
|
|
(unless (string-empty-p user-full-name)
|
2018-09-25 10:29:57 -04:00
|
|
|
(cl-loop for key in (ignore-errors (epg-list-keys (epg-make-context) user-full-name))
|
2018-09-21 14:06:15 -04:00
|
|
|
collect (epg-sub-key-id (car (epg-key-sub-key-list key)))))
|
|
|
|
user-mail-address)
|
2017-12-27 22:48:05 -05:00
|
|
|
;; With GPG 2.1, this forces gpg-agent to use the Emacs minibuffer to
|
|
|
|
;; prompt for the key passphrase.
|
|
|
|
epa-pinentry-mode 'loopback))
|
|
|
|
|
|
|
|
|
2019-04-03 19:15:02 -04:00
|
|
|
;;
|
|
|
|
;;; Smartparens config
|
|
|
|
|
|
|
|
(when (featurep! +smartparens)
|
|
|
|
;; You can disable :unless predicates with (sp-pair "'" nil :unless nil)
|
|
|
|
;; And disable :post-handlers with (sp-pair "{" nil :post-handlers nil)
|
|
|
|
;; or specific :post-handlers with:
|
|
|
|
;; (sp-pair "{" nil :post-handlers '(:rem ("| " "SPC")))
|
|
|
|
(after! smartparens
|
2019-04-22 02:53:55 -04:00
|
|
|
;; Smartparens' navigation feature is neat, but does not justify how
|
|
|
|
;; expensive it is. It's also less useful for evil users. This may need to
|
|
|
|
;; be reactivated for non-evil users though. Needs more testing!
|
|
|
|
(defun doom|disable-smartparens-navigate-skip-match ()
|
|
|
|
(setq sp-navigate-skip-match nil
|
|
|
|
sp-navigate-consider-sgml-tags nil))
|
|
|
|
(add-hook 'after-change-major-mode-hook #'doom|disable-smartparens-navigate-skip-match)
|
|
|
|
|
2019-04-03 19:15:02 -04:00
|
|
|
;; Autopair quotes more conservatively; if I'm next to a word/before another
|
|
|
|
;; quote, I likely don't want to open a new pair.
|
|
|
|
(let ((unless-list '(sp-point-before-word-p
|
|
|
|
sp-point-after-word-p
|
|
|
|
sp-point-before-same-p)))
|
|
|
|
(sp-pair "'" nil :unless unless-list)
|
|
|
|
(sp-pair "\"" nil :unless unless-list))
|
|
|
|
|
|
|
|
;; Expand {|} => { | }
|
|
|
|
;; Expand {|} => {
|
|
|
|
;; |
|
|
|
|
;; }
|
|
|
|
(dolist (brace '("(" "{" "["))
|
|
|
|
(sp-pair brace nil
|
|
|
|
:post-handlers '(("||\n[i]" "RET") ("| " "SPC"))
|
|
|
|
;; I likely don't want a new pair if adjacent to a word or opening brace
|
|
|
|
:unless '(sp-point-before-word-p sp-point-before-same-p)))
|
|
|
|
|
|
|
|
;; Major-mode specific fixes
|
|
|
|
(sp-local-pair '(ruby-mode enh-ruby-mode) "{" "}"
|
|
|
|
:pre-handlers '(:rem sp-ruby-pre-handler)
|
|
|
|
:post-handlers '(:rem sp-ruby-post-handler))
|
|
|
|
|
|
|
|
;; Don't do square-bracket space-expansion where it doesn't make sense to
|
|
|
|
(sp-local-pair '(emacs-lisp-mode org-mode markdown-mode gfm-mode)
|
|
|
|
"[" nil :post-handlers '(:rem ("| " "SPC")))
|
|
|
|
|
|
|
|
;; Reasonable default pairs for HTML-style comments
|
|
|
|
(sp-local-pair (append sp--html-modes '(markdown-mode gfm-mode))
|
|
|
|
"<!--" "-->"
|
|
|
|
:unless '(sp-point-before-word-p sp-point-before-same-p)
|
|
|
|
:actions '(insert) :post-handlers '(("| " "SPC")))
|
|
|
|
|
|
|
|
;; Disable electric keys in C modes because it interferes with smartparens
|
|
|
|
;; and custom bindings. We'll do it ourselves (mostly).
|
|
|
|
(after! cc-mode
|
|
|
|
(c-toggle-electric-state -1)
|
|
|
|
(c-toggle-auto-newline -1)
|
|
|
|
(setq c-electric-flag nil)
|
|
|
|
(dolist (key '("#" "{" "}" "/" "*" ";" "," ":" "(" ")" "\177"))
|
|
|
|
(define-key c-mode-base-map key nil)))
|
|
|
|
|
|
|
|
;; Expand C-style doc comment blocks. Must be done manually because some of
|
|
|
|
;; these languages use specialized (and deferred) parsers, whose state we
|
|
|
|
;; can't access while smartparens is doing its thing.
|
|
|
|
(defun +default-expand-doc-comment-block (&rest _ignored)
|
|
|
|
(let ((indent (current-indentation)))
|
|
|
|
(newline-and-indent)
|
|
|
|
(save-excursion
|
|
|
|
(newline)
|
|
|
|
(insert (make-string indent 32) " */")
|
|
|
|
(delete-char 2))))
|
|
|
|
(sp-local-pair
|
|
|
|
'(js2-mode typescript-mode rjsx-mode rust-mode c-mode c++-mode objc-mode
|
|
|
|
csharp-mode java-mode php-mode css-mode scss-mode less-css-mode
|
|
|
|
stylus-mode)
|
|
|
|
"/*" "*/"
|
|
|
|
:actions '(insert)
|
|
|
|
:post-handlers '(("| " "SPC") ("|\n*/[i][d-2]" "RET") (+default-expand-doc-comment-block "*")))
|
|
|
|
|
|
|
|
;; Highjacks backspace to:
|
|
|
|
;; a) balance spaces inside brackets/parentheses ( | ) -> (|)
|
2019-05-01 19:12:52 -04:00
|
|
|
;; b) delete up to nearest column multiple of `tab-width' at a time
|
2019-04-03 19:15:02 -04:00
|
|
|
;; c) close empty multiline brace blocks in one step:
|
|
|
|
;; {
|
|
|
|
;; |
|
|
|
|
;; }
|
|
|
|
;; becomes {|}
|
|
|
|
;; d) refresh smartparens' :post-handlers, so SPC and RET expansions work
|
|
|
|
;; even after a backspace.
|
|
|
|
;; e) properly delete smartparen pairs when they are encountered, without
|
|
|
|
;; the need for strict mode.
|
|
|
|
;; f) do none of this when inside a string
|
|
|
|
(advice-add #'delete-backward-char :override #'+default*delete-backward-char)
|
|
|
|
|
|
|
|
;; Makes `newline-and-indent' continue comments (and more reliably)
|
|
|
|
(advice-add #'newline-and-indent :around #'+default*newline-indent-and-continue-comments)))
|
|
|
|
|
|
|
|
|
2018-12-23 23:57:29 -05:00
|
|
|
;;
|
2019-03-09 03:41:26 -05:00
|
|
|
;;; Keybinding fixes
|
2018-12-23 23:57:29 -05:00
|
|
|
|
|
|
|
;; This section is dedicated to "fixing" certain keys so that they behave
|
|
|
|
;; sensibly (and consistently with similar contexts).
|
|
|
|
|
|
|
|
;; Consistently use q to quit windows
|
|
|
|
(after! tabulated-list
|
|
|
|
(define-key tabulated-list-mode-map "q" #'quit-window))
|
|
|
|
|
|
|
|
;; OS specific fixes
|
|
|
|
(when IS-MAC
|
|
|
|
;; Fix MacOS shift+tab
|
2019-05-02 17:57:31 -04:00
|
|
|
(define-key key-translation-map [S-iso-lefttab] [backtab])
|
2019-01-21 22:09:02 -05:00
|
|
|
;; Fix conventional OS keys in Emacs
|
2019-01-22 18:03:22 -05:00
|
|
|
(map! "s-`" #'other-frame ; fix frame-switching
|
2019-01-21 22:09:02 -05:00
|
|
|
;; fix OS window/frame navigation/manipulation keys
|
2019-01-22 18:03:22 -05:00
|
|
|
"s-w" #'delete-window
|
|
|
|
"s-W" #'delete-frame
|
|
|
|
"s-n" #'+default/new-buffer
|
|
|
|
"s-N" #'make-frame
|
2019-01-28 20:17:37 -05:00
|
|
|
"s-q" (if (daemonp) #'delete-frame #'save-buffers-kill-terminal)
|
2019-01-28 14:23:12 -08:00
|
|
|
"C-s-f" #'toggle-frame-fullscreen
|
|
|
|
;; Restore somewhat common navigation
|
|
|
|
"s-l" #'goto-line
|
2019-01-21 22:09:02 -05:00
|
|
|
;; Restore OS undo, save, copy, & paste keys (without cua-mode, because
|
|
|
|
;; it imposes some other functionality and overhead we don't need)
|
2019-01-28 14:23:12 -08:00
|
|
|
"s-f" #'swiper
|
2019-01-22 18:03:22 -05:00
|
|
|
"s-z" #'undo
|
2019-01-28 14:23:12 -08:00
|
|
|
"s-Z" #'redo
|
2019-01-22 18:03:22 -05:00
|
|
|
"s-c" (if (featurep 'evil) #'evil-yank #'copy-region-as-kill)
|
|
|
|
"s-v" #'yank
|
|
|
|
"s-s" #'save-buffer
|
2019-01-21 22:09:02 -05:00
|
|
|
;; Buffer-local font scaling
|
2019-01-22 18:03:22 -05:00
|
|
|
"s-+" (λ! (text-scale-set 0))
|
|
|
|
"s-=" #'text-scale-increase
|
|
|
|
"s--" #'text-scale-decrease
|
2019-01-22 04:10:57 -05:00
|
|
|
;; Conventional text-editing keys & motions
|
2019-01-22 18:03:22 -05:00
|
|
|
"s-a" #'mark-whole-buffer
|
2019-02-21 17:46:18 -05:00
|
|
|
:g "s-/" (λ! (save-excursion (comment-line 1)))
|
|
|
|
:n "s-/" #'evil-commentary-line
|
|
|
|
:v "s-/" #'evil-commentary
|
2019-03-14 14:24:04 -04:00
|
|
|
:gni [s-return] #'+default/newline-below
|
|
|
|
:gni [S-s-return] #'+default/newline-above
|
2019-02-03 18:56:07 -05:00
|
|
|
:gi [s-backspace] #'doom/backward-kill-to-bol-and-indent
|
|
|
|
:gi [s-left] #'doom/backward-to-bol-or-indent
|
|
|
|
:gi [s-right] #'doom/forward-to-last-non-comment-or-eol
|
|
|
|
:gi [M-backspace] #'backward-kill-word
|
|
|
|
:gi [M-left] #'backward-word
|
|
|
|
:gi [M-right] #'forward-word))
|
2019-01-21 22:09:02 -05:00
|
|
|
|
2018-02-14 05:10:48 -05:00
|
|
|
|
Introduce general.el & rewrite map!
+ Now uses an overriding keymap for leader keys, so that it is always
available, even outside of normal/visual states. In insert/emacs
states, or in sessions where evil is absent, an alternative prefix is
used for leader/localleader keys. See these variables:
+ doom-leader-prefix
+ doom-leader-alt-prefix
+ doom-localleader-prefix
+ doom-localleader-alt-prefix
+ Keybinds now support alternative prefixes through the new :alt-prefix
property. This is useful for non-evil users and non-normal evil
states. By default, this is M-SPC (leader) and M-SPC m (localleader).
+ Removed +evil-commands flag from config/default (moved to
feature/evil/+commands.el).
+ config/default/+bindings.el has been split into
config/default/+{evil,emacs}-bindings.el, which one is loaded depends
on whether evil is present or not. The latter is blank, but will soon
be populated with a keybinding scheme for non-evil users (perhaps
inspired by #641).
+ The define-key! macro has been replaced; it is now an alias for
general-def.
+ Added unmap! as an alias for general-unbind.
+ The following modifier key conventions are now enforced for
consistency, across all OSes:
alt/option = meta
windows/command = super
It used to be
alt/option = alt
windows/command = meta
Many of the default keybinds have been updated to reflect this switch,
but it is likely to affect personal meta/super keybinds!
The map! macro has also been rewritten to use general-define-key. Here
is what has been changed:
+ map! no longer works with characters, e.g. (map! ?x #'do-something) is
no longer supported. Keys must be kbd-able strings like "C-c x" or
vectors like [?C-c ?x].
+ The :map and :map* properties are now the same thing. If specified
keymaps aren't defined when binding keys, it is automatically
deferred.
+ The way you bind local keybinds has changed:
;; Don't do this
(map! :l "a" #'func-a
:l "b" #'func-b)
;; Do this
(map! :map 'local "a" #'func-a
"b" #'func-b)
+ map! now supports the following new blocks:
+ (:if COND THEN-FORM ELSE-FORM...)
+ (:alt-prefix PREFIX KEYS...) -- this prefix will be used for
non-normal evil states. Equivalent to :non-normal-prefix in general.
+ The way you declare a which-key label for a prefix key has changed:
;; before
(map! :desc "label" :prefix "a" ...)
;; now
(map! :prefix ("a" . "label") ...)
+ It used to be that map! supported binding a key to a key sequence,
like so:
(map! "a" [?x]) ; pressing a is like pressing x
This functionality was removed *temporarily* while I figure out the
implementation.
Addresses: #448, #814, #860
Mentioned in: #940
2018-12-22 03:30:04 -05:00
|
|
|
;;
|
2019-03-09 03:41:26 -05:00
|
|
|
;;; Keybind schemes
|
2017-12-30 00:56:54 -05:00
|
|
|
|
2019-03-09 01:50:24 -05:00
|
|
|
;; Custom help keys -- these aren't under `+bindings' because they ought to be
|
|
|
|
;; universal.
|
2019-04-04 22:38:46 -04:00
|
|
|
(define-key! help-map
|
|
|
|
;; new keybinds
|
|
|
|
"'" #'describe-char
|
|
|
|
"B" #'doom/open-bug-report
|
2019-04-23 20:46:58 -04:00
|
|
|
"D" #'doom/help
|
2019-04-23 20:58:19 -04:00
|
|
|
"E" #'doom/sandbox
|
2019-04-04 22:38:46 -04:00
|
|
|
"M" #'doom/describe-active-minor-mode
|
|
|
|
"O" #'+lookup/online
|
2019-05-02 18:18:01 -04:00
|
|
|
"R" #'doom/reload
|
2019-04-04 22:38:46 -04:00
|
|
|
"T" #'doom/toggle-profiler
|
|
|
|
"V" #'set-variable
|
|
|
|
"W" #'+default/man-or-woman
|
|
|
|
"C-k" #'describe-key-briefly
|
|
|
|
"C-l" #'describe-language-environment
|
|
|
|
"C-m" #'info-emacs-manual
|
|
|
|
|
2019-04-12 16:07:32 -04:00
|
|
|
;; Unbind `help-for-help'. Conflicts with which-key's help command for the
|
|
|
|
;; <leader> h prefix. It's already on ? and F1 anyway.
|
|
|
|
"C-h" nil
|
|
|
|
|
2019-04-04 22:38:46 -04:00
|
|
|
;; replacement keybinds
|
|
|
|
;; replaces `info-emacs-manual' b/c it's on C-m now
|
|
|
|
"r" nil
|
|
|
|
"rr" #'doom/reload
|
|
|
|
"rt" #'doom/reload-theme
|
|
|
|
"rp" #'doom/reload-packages
|
|
|
|
"rf" #'doom/reload-font
|
|
|
|
"re" #'doom/reload-env
|
|
|
|
|
2019-04-23 20:46:58 -04:00
|
|
|
;; replaces `apropos-documentation' b/c `apropos' covers this
|
|
|
|
"d" nil
|
|
|
|
"d/" #'doom/help-search
|
|
|
|
"da" #'doom/help-autodefs
|
2019-04-23 20:58:19 -04:00
|
|
|
"db" #'doom/report-bug
|
2019-04-23 20:46:58 -04:00
|
|
|
"dd" #'doom/toggle-debug-mode
|
|
|
|
"df" #'doom/help-faq
|
|
|
|
"dh" #'doom/help
|
|
|
|
"dm" #'doom/help-modules
|
|
|
|
"dn" #'doom/help-news
|
|
|
|
"dp" #'doom/help-packages
|
|
|
|
"dc" #'doom/help-package-config
|
2019-04-23 20:58:19 -04:00
|
|
|
"ds" #'doom/sandbox
|
2019-04-23 20:46:58 -04:00
|
|
|
"dt" #'doom/toggle-profiler
|
|
|
|
"dv" #'doom/version
|
|
|
|
|
2019-04-04 22:38:46 -04:00
|
|
|
;; replaces `apropos-command'
|
|
|
|
"a" #'apropos
|
|
|
|
;; replaces `describe-copying' b/c not useful
|
|
|
|
"C-c" #'describe-coding-system
|
|
|
|
;; replaces `Info-got-emacs-command-node' b/c redundant w/ `Info-goto-node'
|
|
|
|
"F" #'describe-face
|
|
|
|
;; replaces `view-hello-file' b/c annoying
|
2019-04-23 20:46:58 -04:00
|
|
|
"h" #'doom/help
|
2019-04-04 22:38:46 -04:00
|
|
|
;; replaces `describe-language-environment' b/c remapped to C-l
|
|
|
|
"L" #'global-command-log-mode
|
|
|
|
;; replaces `view-emacs-news' b/c it's on C-n too
|
2019-04-23 20:46:58 -04:00
|
|
|
"n" #'doom/help-news
|
2019-04-04 22:38:46 -04:00
|
|
|
;; replaces `finder-by-keyword'
|
2019-04-23 20:46:58 -04:00
|
|
|
"p" #'doom/describe-package
|
2019-04-04 22:38:46 -04:00
|
|
|
;; replaces `describe-package' b/c redundant w/ `doom/describe-package'
|
|
|
|
"P" #'find-library)
|
2019-03-09 01:50:24 -05:00
|
|
|
|
|
|
|
(after! which-key
|
|
|
|
(which-key-add-key-based-replacements "C-h r" "reload")
|
|
|
|
(when (featurep 'evil)
|
|
|
|
(which-key-add-key-based-replacements (concat doom-leader-key " r") "reload")
|
|
|
|
(which-key-add-key-based-replacements (concat doom-leader-alt-key " r") "reload")))
|
|
|
|
|
|
|
|
|
Introduce general.el & rewrite map!
+ Now uses an overriding keymap for leader keys, so that it is always
available, even outside of normal/visual states. In insert/emacs
states, or in sessions where evil is absent, an alternative prefix is
used for leader/localleader keys. See these variables:
+ doom-leader-prefix
+ doom-leader-alt-prefix
+ doom-localleader-prefix
+ doom-localleader-alt-prefix
+ Keybinds now support alternative prefixes through the new :alt-prefix
property. This is useful for non-evil users and non-normal evil
states. By default, this is M-SPC (leader) and M-SPC m (localleader).
+ Removed +evil-commands flag from config/default (moved to
feature/evil/+commands.el).
+ config/default/+bindings.el has been split into
config/default/+{evil,emacs}-bindings.el, which one is loaded depends
on whether evil is present or not. The latter is blank, but will soon
be populated with a keybinding scheme for non-evil users (perhaps
inspired by #641).
+ The define-key! macro has been replaced; it is now an alias for
general-def.
+ Added unmap! as an alias for general-unbind.
+ The following modifier key conventions are now enforced for
consistency, across all OSes:
alt/option = meta
windows/command = super
It used to be
alt/option = alt
windows/command = meta
Many of the default keybinds have been updated to reflect this switch,
but it is likely to affect personal meta/super keybinds!
The map! macro has also been rewritten to use general-define-key. Here
is what has been changed:
+ map! no longer works with characters, e.g. (map! ?x #'do-something) is
no longer supported. Keys must be kbd-able strings like "C-c x" or
vectors like [?C-c ?x].
+ The :map and :map* properties are now the same thing. If specified
keymaps aren't defined when binding keys, it is automatically
deferred.
+ The way you bind local keybinds has changed:
;; Don't do this
(map! :l "a" #'func-a
:l "b" #'func-b)
;; Do this
(map! :map 'local "a" #'func-a
"b" #'func-b)
+ map! now supports the following new blocks:
+ (:if COND THEN-FORM ELSE-FORM...)
+ (:alt-prefix PREFIX KEYS...) -- this prefix will be used for
non-normal evil states. Equivalent to :non-normal-prefix in general.
+ The way you declare a which-key label for a prefix key has changed:
;; before
(map! :desc "label" :prefix "a" ...)
;; now
(map! :prefix ("a" . "label") ...)
+ It used to be that map! supported binding a key to a key sequence,
like so:
(map! "a" [?x]) ; pressing a is like pressing x
This functionality was removed *temporarily* while I figure out the
implementation.
Addresses: #448, #814, #860
Mentioned in: #940
2018-12-22 03:30:04 -05:00
|
|
|
(when (featurep! +bindings)
|
2019-01-21 22:07:53 -05:00
|
|
|
;; Make M-x harder to miss
|
2018-12-31 15:00:05 -05:00
|
|
|
(define-key! 'override
|
2019-01-21 22:07:53 -05:00
|
|
|
"M-x" #'execute-extended-command
|
2019-01-28 21:00:41 -05:00
|
|
|
"A-x" #'execute-extended-command)
|
2018-12-31 15:00:05 -05:00
|
|
|
|
2019-03-09 03:41:26 -05:00
|
|
|
;; A Doom convention where C-s on popups and interactive searches will invoke
|
|
|
|
;; ivy/helm for their superior filtering.
|
|
|
|
(define-key! :keymaps +default-minibuffer-maps
|
2019-04-04 22:38:46 -04:00
|
|
|
"C-s" (if (featurep! :completion ivy)
|
|
|
|
#'counsel-minibuffer-history
|
|
|
|
#'helm-minibuffer-history))
|
2019-03-09 03:41:26 -05:00
|
|
|
|
2019-01-21 11:15:39 +01:00
|
|
|
;; Smarter C-a/C-e for both Emacs and Evil. C-a will jump to indentation.
|
|
|
|
;; Pressing it again will send you to the true bol. Same goes for C-e, except
|
|
|
|
;; it will ignore comments+trailing whitespace before jumping to eol.
|
|
|
|
(map! :gi "C-a" #'doom/backward-to-bol-or-indent
|
2019-01-21 22:07:31 -05:00
|
|
|
:gi "C-e" #'doom/forward-to-last-non-comment-or-eol
|
|
|
|
;; Standardize the behavior of M-RET/M-S-RET as a "add new item
|
|
|
|
;; below/above" key.
|
2019-02-03 18:56:07 -05:00
|
|
|
:gni [M-return] #'+default/newline-below
|
|
|
|
:gni [M-S-return] #'+default/newline-above
|
|
|
|
:gni [C-return] #'+default/newline-below
|
2019-03-09 03:41:26 -05:00
|
|
|
:gni [C-S-return] #'+default/newline-above))
|
|
|
|
|
|
|
|
|
|
|
|
;;
|
|
|
|
;;; Bootstrap configs
|
2019-01-21 11:15:39 +01:00
|
|
|
|
2019-03-09 03:41:26 -05:00
|
|
|
(if (featurep 'evil)
|
|
|
|
(load! "+evil")
|
|
|
|
(load! "+emacs"))
|