diff options
author | Case Duckworth | 2021-01-08 23:31:57 -0600 |
---|---|---|
committer | Case Duckworth | 2021-01-08 23:31:57 -0600 |
commit | 225cdb10c7d568ad25458837b4c3709722c7ea52 (patch) | |
tree | 45d9941a2a1f0087dbc900b74408f791b7ac0201 | |
parent | Fix font-changing functions (diff) | |
download | emacs-225cdb10c7d568ad25458837b4c3709722c7ea52.tar.gz emacs-225cdb10c7d568ad25458837b4c3709722c7ea52.zip |
Add adaptive-wrap
-rw-r--r-- | config.org | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/config.org b/config.org index 1a17b2f..b45ac10 100644 --- a/config.org +++ b/config.org | |||
@@ -1004,6 +1004,13 @@ I’ve pretty much cribbed this from [[https://github.com/ncaq/recentf-remove-su | |||
1004 | (global-visual-line-mode +1) | 1004 | (global-visual-line-mode +1) |
1005 | #+END_SRC | 1005 | #+END_SRC |
1006 | 1006 | ||
1007 | *** View long lines like filled lines in the beginning | ||
1008 | |||
1009 | #+BEGIN_SRC emacs-lisp | ||
1010 | (straight-use-package 'adaptive-wrap) | ||
1011 | (adaptive-wrap-prefix-mode +1) | ||
1012 | #+end_src | ||
1013 | |||
1007 | *** Stay snappy with long-lined files | 1014 | *** Stay snappy with long-lined files |
1008 | 1015 | ||
1009 | #+BEGIN_SRC emacs-lisp | 1016 | #+BEGIN_SRC emacs-lisp |