Truncate long lines
This commit is contained in:
parent
1b3907e8d6
commit
ed329adacd
1 changed files with 10 additions and 0 deletions
|
@ -216,6 +216,16 @@ To start off, first I need to enable lexical binding.
|
|||
(setq require-final-newline t)
|
||||
#+END_SRC
|
||||
|
||||
* Long lines
|
||||
|
||||
By default Emacs wraps long lines around to the next line when they
|
||||
reach the far end of the window. However I prefer to have them
|
||||
truncated instead.
|
||||
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(setq-default truncate-lines t)
|
||||
#+END_SRC
|
||||
|
||||
* Theme
|
||||
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
|
|
Loading…
Reference in a new issue