Describtion
If I place "set number=true" in .vsvimrc or .vimrc file it doe not work.
Its only working manually typed in VisualStudio ":set number=true".
To Reproduce
Yust place .vsvirmrc like this in your user home dir:

(tried with or without ':')
Settings in VS like:

Expected behavior
Settings of the .vimrc file should be loaded and executed.
Environment
Additional context
Add any other context about the problem here.
When "Use Visual Studio Settings" is in effect (see below):

VsVim will use the line numbering scheme specified in Tools -> Options -> Text Editor that is appropriate for the current type of file being edited. As a result, your Visual Studio line number settings override your VsVim line number settings.
To handle this situation you can either:
1) Turn off Tools -> Options -> VsVim -> Defaults -> Vim Edit Behavior -> Use Visual Studio Settings (and in that case your vim rc file settings will be obeyed)
2) Turn on Tools -> Options -> Text Editor -> All Languages -> Settings -> Line Numbers (and line numbers will apply to all file types in Visual Studio and in VsVim)
Thx 👍✔
Most helpful comment
When "Use Visual Studio Settings" is in effect (see below):
VsVim will use the line numbering scheme specified in Tools -> Options -> Text Editor that is appropriate for the current type of file being edited. As a result, your Visual Studio line number settings override your VsVim line number settings.
To handle this situation you can either:
1) Turn off Tools -> Options -> VsVim -> Defaults -> Vim Edit Behavior -> Use Visual Studio Settings (and in that case your vim rc file settings will be obeyed)
2) Turn on Tools -> Options -> Text Editor -> All Languages -> Settings -> Line Numbers (and line numbers will apply to all file types in Visual Studio and in VsVim)