50%
した
Jesse Atkinson
jsatk
I love Vim 📝, Docker 🐳, & Fish 🐠 Shell.
305 | " Indent Guides
306 | let g:indentguides_state = 0
307 | function! IndentGuides() abort " {{{
308 | if g:indentguides_state
309 | let g:indentguides_state = 0
310 | 2match None
311 | else
312 | let g:indentguides_state = 1
313 | execute '2match IndentGuides /\%(\_^\s*\)\@<=\%(\%'.(0*&sw+1).'v\|\%'.(1*&sw+1).'v\|\%'.(2*&sw+1).'v\|\%'.(3*&sw+1).'v\|\%'.(4*&sw+1).'v\|\%'.(5*&sw+1).'v\|\%'.(6*&sw+1).'v\|\%'.(7*&sw+1).'v\)\s/'
314 | endif
315 | endfunction " }}}
316 | hi def IndentGuides guibg=#303030 ctermbg=234
40 | Plug 'junegunn/goyo.vim' " Makes working with plain text/markdown nicer.