mirror of
https://github.com/ViViDboarder/vim-settings.git
synced 2024-11-01 16:36:28 +00:00
20 lines
420 B
VimL
20 lines
420 B
VimL
" Both these plugins work well together for distraction free editing
|
|
Blink 'junegunn/goyo.vim'
|
|
Blink 'junegunn/limelight.vim'
|
|
let g:goyo_width = 120
|
|
|
|
command Zen :Goyo
|
|
|
|
function! s:goyo_enter()
|
|
Limelight
|
|
endfunction
|
|
|
|
function! s:goyo_leave()
|
|
Limelight!
|
|
endfunction
|
|
|
|
augroup zenevents
|
|
autocmd! User GoyoEnter nested call <SID>goyo_enter()
|
|
autocmd! User GoyoLeave nested call <SID>goyo_leave()
|
|
augroup end
|