How to save GVIM settings?

vim

Solution

You can use `:set` command to list all settings and put it to `${HOME}/.vimrc`.

:se[t]     Show all options that differ from their default value.

Problem

I just installed `GVIM`, went through the menus, and changed a bunch of settings. I closed `GVIM`, and the settings were all lost. :( I made my changes again. Now how do I keep my settings?

Original source