vim-settings/neovim/lua/plugins/goyo-limelight.lua

19 lines
309 B
Lua
Raw Normal View History

2021-12-13 16:48:40 -08:00
vim.g.goyo_width = 120
2021-12-15 09:37:51 -08:00
vim.cmd([[
2021-12-13 16:48:40 -08:00
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
2021-12-15 09:37:51 -08:00
]])