Don't fold lines

This commit is contained in:
Lars Tveito 2015-08-06 17:13:29 +02:00
parent 0031cce666
commit f93d635673

View File

@ -268,10 +268,11 @@
buffer-local variable's default value. buffer-local variable's default value.
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(setq-default fill-column 76 ; Maximum line width. (setq-default fill-column 79 ; Maximum line width
indent-tabs-mode nil ; Use spaces instead of tabs. truncate-lines t ; Don't fold lines
split-width-threshold 100 ; Split verticly by default. indent-tabs-mode nil ; Use spaces instead of tabs
auto-fill-function 'do-auto-fill) ; Auto-fill-mode everywhere. split-width-threshold 100 ; Split verticly by default
auto-fill-function 'do-auto-fill) ; Auto-fill-mode everywhere
#+END_SRC #+END_SRC
The =load-path= specifies where Emacs should look for =.el=-files (or The =load-path= specifies where Emacs should look for =.el=-files (or