|
|
@ -33,14 +33,14 @@ if isdirectory($HOME . '/.vim/bundle/vundle')
|
|
33
|
33
|
Bundle 'kchmck/vim-coffee-script'
|
|
34
|
34
|
|
|
35
|
35
|
Bundle 'junegunn/goyo.vim'
|
|
36
|
|
function! g:goyo_before()
|
|
|
36
|
function! s:goyo_before()
|
|
37
|
37
|
set noshowmode
|
|
38
|
38
|
endfunction
|
|
39
|
39
|
|
|
40
|
|
function! g:goyo_after()
|
|
|
40
|
function! s:goyo_after()
|
|
41
|
41
|
set showmode
|
|
42
|
42
|
endfunction
|
|
43
|
|
let g:goyo_callbacks = [function('g:goyo_before'), function('g:goyo_after')]
|
|
|
43
|
let g:goyo_callbacks = [function('s:goyo_before'), function('s:goyo_after')]
|
|
44
|
44
|
endif
|
|
45
|
45
|
|
|
46
|
46
|
" Have syntax highlighting and non-vi features
|