VimGolf is a game to improve your Vim skills. You can play it on VimGolf.

The default VimGolf host has connection issues. If that is the case, you can use this site as VimGolf host.

You can view all the VimGolf problems at here.

You can set the GOLF_HOST (Python client) or GOLFHOST (Ruby client) environment variables to https://vimgolf.netlify.app/vimgolf.

If you are using the original Ruby client, igrigorik/vimgolf:

# install the client
gem install vimgolf

# set the environment variable
export GOLFHOST=https://vimgolf.netlify.app/vimgolf

# play the game
vimgolf put "<challenge_id>" 

If you are using the Python client, dstein64/vimgolf:

# install the client
pip install vimgolf

# set the environment variable
export GOLF_HOST=https://vimgolf.netlify.app/vimgolf

# list the golf problems
vimgolf list

# play the game
vimgolf put "<challenge_id>"

If you want to know more about the usage of clients, please refer to the original documentation.