diff options
| author | Miquel Sabaté Solà <msabate@suse.com> | 2016-06-30 09:20:26 +0200 |
|---|---|---|
| committer | Miquel Sabaté Solà <msabate@suse.com> | 2016-06-30 09:20:26 +0200 |
| commit | db85e8b6d72e3c6be4259845986f30a7da9daf3d (patch) | |
| tree | 4bccaeb02c068df41fbb4d75150f775be7a5ed96 | |
| parent | b98faaf7c35af1294343409fa52f19f42ce41a07 (diff) | |
| download | dotfiles-db85e8b6d72e3c6be4259845986f30a7da9daf3d.tar.gz dotfiles-db85e8b6d72e3c6be4259845986f30a7da9daf3d.zip | |
emacs: set 80 columns width
Signed-off-by: Miquel Sabaté Solà <msabate@suse.com>
| -rw-r--r-- | emacs/init.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/emacs/init.el b/emacs/init.el index 46378d3..b471f4e 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -85,6 +85,10 @@ (setq-default indent-tabs-mode nil) (setq-default tab-width 4) +;; Maximum 80 columns. +(setq-default fill-column 80) +(setq-default auto-fill-function 'do-auto-fill) + ;; Delete the selection with a keypress. (delete-selection-mode t) |
