mirror of
https://github.com/amix/vimrc
synced 2025-06-23 06:35:01 +08:00
Updated plugins. Removed the tabstop merge that 010c2940ce
introduced
This commit is contained in:
@ -7,7 +7,7 @@ zenroom for Vim: Focusing only on the essential](http://amix.dk/blog/post/19744#
|
||||
|
||||
Please note that this might not work perfectly with your colorscheme. Patches are welcome to fix this :-)
|
||||
|
||||
## Installaion and usage
|
||||
## Installation and usage
|
||||
|
||||
* Install [goyo.vim](https://github.com/junegunn/goyo.vim)
|
||||
* In command mode type :Goyo
|
||||
@ -23,7 +23,7 @@ Additionally you may want to have a shortcut. Add this to your vimrc:
|
||||
* [vim-zenroom](https://github.com/amix/vim-zenroom)
|
||||
|
||||
|
||||
## How it looks like in action
|
||||
## How it looks in action
|
||||
|
||||

|
||||
|
||||
|
@ -62,7 +62,7 @@ function! s:markdown_room()
|
||||
exec( "hi StatusLineNC " . l:highlightfgbgcolor )
|
||||
endfunction
|
||||
|
||||
function! g:Zenroom_goyo_before()
|
||||
function! s:zenroom_goyo_before()
|
||||
if !has("gui_running")
|
||||
return
|
||||
endif
|
||||
@ -73,7 +73,7 @@ function! g:Zenroom_goyo_before()
|
||||
endif
|
||||
endfunction
|
||||
|
||||
function! g:Zenroom_goyo_after()
|
||||
function! s:zenroom_goyo_after()
|
||||
if !has("gui_running")
|
||||
return
|
||||
endif
|
||||
@ -87,4 +87,4 @@ function! g:Zenroom_goyo_after()
|
||||
endif
|
||||
endfunction
|
||||
|
||||
let g:goyo_callbacks = [ function('g:Zenroom_goyo_before'), function('g:Zenroom_goyo_after') ]
|
||||
let g:goyo_callbacks = [ function('s:zenroom_goyo_before'), function('s:zenroom_goyo_after') ]
|
||||
|
Reference in New Issue
Block a user