diff options
| -rw-r--r-- | autoload/space_vlaze/game.vim | 10 | 
1 files changed, 9 insertions, 1 deletions
| diff --git a/autoload/space_vlaze/game.vim b/autoload/space_vlaze/game.vim index cbf5fc0..4c7703b 100644 --- a/autoload/space_vlaze/game.vim +++ b/autoload/space_vlaze/game.vim @@ -22,7 +22,15 @@ endfunction  function! space_vlaze#game#SetupWindow() -	setlocal bufhidden=delete noswapfile nolazyredraw +	setlocal buftype=nofile +	setlocal bufhidden=wipe +	setlocal noswapfile +	setlocal nonumber +	setlocal nolist +	setlocal nowrap +	setlocal nocursorline +	setlocal nocursorcolumn +	setlocal nolazyredraw  endfunction | 
