diff options
author | jao <jao@gnu.org> | 2022-10-30 03:14:41 +0000 |
---|---|---|
committer | jao <jao@gnu.org> | 2022-10-30 03:14:49 +0000 |
commit | c42e2c8b29aae4f4b2679caeab88e768d2a08371 (patch) | |
tree | ea15cd713213a929547d531108141ac74152b90a /attic/elisp | |
parent | fbb1571cec862d16334e14c2613f356c1c938b3c (diff) | |
download | elibs-c42e2c8b29aae4f4b2679caeab88e768d2a08371.tar.gz elibs-c42e2c8b29aae4f4b2679caeab88e768d2a08371.tar.bz2 |
no easy escape
Diffstat (limited to 'attic/elisp')
-rw-r--r-- | attic/elisp/misc.el | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/attic/elisp/misc.el b/attic/elisp/misc.el index 58cb9bb..dda3afe 100644 --- a/attic/elisp/misc.el +++ b/attic/elisp/misc.el @@ -52,6 +52,15 @@ :init (add-hook 'prog-mode-hook #'smartscan-mode) :diminish) +;;; easy escape +(use-package easy-escape + :ensure t + :config + (set-face-attribute 'easy-escape-face nil :underline t) + (set-face-attribute 'easy-escape-delimiter-face nil :underline t) + :hook (emacs-lisp-mode . easy-escape-minor-mode) + :diminish (easy-escape-minor-mode . "^")) + ;;; vterm (use-package vterm :ensure t |