Change the goyo minimum width from 78 to 80

This commit is contained in:
Kevin MacMartin 2014-10-21 11:06:05 -04:00
parent af0be6d906
commit 5914aceb5d

View file

@ -58,8 +58,8 @@
\ let g:goyo_width = &textwidth | \ let g:goyo_width = &textwidth |
\ if (g:goyo_width == 0) | \ if (g:goyo_width == 0) |
\ let g:goyo_width = max(map(getline(1,'$'), 'len(v:val)')) | \ let g:goyo_width = max(map(getline(1,'$'), 'len(v:val)')) |
\ if (g:goyo_width < 78) | \ if (g:goyo_width < 80) |
\ let g:goyo_width = 78 | \ let g:goyo_width = 80 |
\ endif | \ endif |
\ endif \ endif
"}}} "}}}