diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2025-01-22 20:10:14 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2025-01-23 04:10:36 +0000 |
commit | 9b9d97f08687652b597456e8ed36b9bda6780c51 (patch) | |
tree | ac856e82e620b99ca03ca774c2b1c63ddc9a5ad1 | |
parent | 7e4cec049ba8fcd5f8d329dbbd3c97f872c14089 (diff) | |
download | mnpgr-9b9d97f08687652b597456e8ed36b9bda6780c51.tar.gz mnpgr-9b9d97f08687652b597456e8ed36b9bda6780c51.tar.bz2 mnpgr-9b9d97f08687652b597456e8ed36b9bda6780c51.zip |
Configure Vim to :nowrap mode.
- Ran into this issue in a vanilla environment with no ~/.vimrc.
Vim had wrapping enabled by default, at 72 columns, resulting
in 80 column man pages looking like crap.
-rwxr-xr-x | mnpgr.tl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -29,7 +29,7 @@ (defvarl vim-commands (join-with "|" '("set syntax=mnpgr" - "set conceallevel=2 concealcursor=nc" + "set conceallevel=2 concealcursor=nc nowrap" "map q :q!\r" "map b \002\r" "map <space> \006"))) |