Skip to content

Commit

Permalink
setting default hints style in .emacs
Browse files Browse the repository at this point in the history
  • Loading branch information
c committed Dec 7, 2024
1 parent 030e889 commit 2d23aee
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.org
Original file line number Diff line number Diff line change
Expand Up @@ -638,11 +638,12 @@ instance, in the =~/.emacs= file, there might be:

#+begin_example
(use-package uniline
:config (setq uniline-hint-style 1))
:config (set-default 'uniline-hint-style 1))
#+end_example

This setting gives one-liner messages. It can be changed later on a buffer
per buffer basis with the =TAB= key.
per buffer basis with the =TAB= key. Note the use of =set-default=. Using
=setq= instead would assign the value =1= only in the =~/.emacs= buffer.

* Line spacing
The =line-spacing= setting in Emacs can change the display of a sketch.
Expand Down

0 comments on commit 2d23aee

Please sign in to comment.