diff options
author | jao <jao@gnu.org> | 2021-04-12 03:52:20 +0100 |
---|---|---|
committer | jao <jao@gnu.org> | 2021-04-12 03:52:20 +0100 |
commit | 37160309dd11a857c68abe7cc6abbaa2bdfb993e (patch) | |
tree | 3b0808536eb1505bb7a3bb310d33103479231349 | |
parent | 5dd64cbc0b91ca9ec6bb1eecca030393ded6e549 (diff) | |
download | elibs-37160309dd11a857c68abe7cc6abbaa2bdfb993e.tar.gz elibs-37160309dd11a857c68abe7cc6abbaa2bdfb993e.tar.bz2 |
a few emacs 28 settings
-rw-r--r-- | init.org | 14 |
1 files changed, 11 insertions, 3 deletions
@@ -184,6 +184,7 @@ #+begin_src emacs-lisp (use-package jao-minibuffer :commands (jao-minibuffer-add-variable jao-minibuffer-refresh)) + (setq enable-recursive-minibuffers t) #+end_src *** Sleep/awake #+begin_src emacs-lisp @@ -376,6 +377,10 @@ (jao--set-fontsets nil) (add-to-list 'after-make-frame-functions 'jao--set-fontsets) #+end_src +***** nobreak char display + #+begin_src emacs-lisp + (setq nobreak-char-display nil) + #+end_src ***** list-fonts-display #+begin_src emacs-lisp (defun list-fonts-display (&optional matching) @@ -1123,13 +1128,15 @@ *** cursor and mark #+begin_src emacs-lisp (transient-mark-mode -1) - (setq cursor-in-non-selected-windows nil) + (setq cursor-in-non-selected-windows nil + cursor-type '(box . 24)) ; become hollow on images of size > 24 (blink-cursor-mode -1) #+end_src *** uniquifiy #+begin_src emacs-lisp (require 'uniquify) - (setq uniquify-buffer-name-style 'forward) + (setq uniquify-buffer-name-style 'forward + uniquify-trailing-separator-p t) #+end_src *** autosave #+BEGIN_SRC emacs-lisp @@ -1203,7 +1210,8 @@ (setq scroll-preserve-screen-position 'always scroll-conservatively most-positive-fixnum scroll-margin 0 - scroll-step 2) + scroll-step 2 + redisplay-skip-fontification-on-input t) (setq line-move-visual t) |