mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-09 23:06:38 -05:00
9 lines
270 B
VimL
9 lines
270 B
VimL
|
autocmd VimEnter,Filetype *
|
||
|
\ let g:goyo_width = &textwidth |
|
||
|
\ if (g:goyo_width == 0) |
|
||
|
\ let g:goyo_width = max(map(getline(1,'$'), 'len(v:val)')) |
|
||
|
\ if (g:goyo_width < 80) |
|
||
|
\ let g:goyo_width = 80 |
|
||
|
\ endif |
|
||
|
\ endif
|