mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-09 23:06:38 -05:00
Goyo is configured to toggle with <Leader><Space>, and to set its width
using either the filetype's textwidth value, or if none is set either 78 columns or the widest line if any are longer than that.
This commit is contained in:
parent
366bdb715c
commit
9b3ec982a4
2 changed files with 13 additions and 0 deletions
|
@ -29,6 +29,7 @@
|
|||
" <Ctrl-_>p | (A) -> comment the current paragraph
|
||||
" + | (V) -> increase the selected region
|
||||
" _ | (V) -> decrease the selected region
|
||||
" <Leader><Space> | (N) -> center content and hide everything else
|
||||
"
|
||||
" (surround)
|
||||
" S" | (V) -> surround selection with quotes
|
||||
|
|
|
@ -30,6 +30,18 @@
|
|||
endif
|
||||
"}}}
|
||||
|
||||
"GOYO: {{{
|
||||
nnoremap <Leader><Space> :Goyo<CR>
|
||||
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 < 78) |
|
||||
\ let g:goyo_width = 78 |
|
||||
\ endif |
|
||||
\ endif
|
||||
"}}}
|
||||
|
||||
"GUNDO: {{{
|
||||
let g:gundo_right=1
|
||||
let g:gundo_width=35
|
||||
|
|
Loading…
Reference in a new issue