New version of writer mode

I recently updated my VS Code extension writer-mode to version 0.3.0. Before I start with what was changed - quick into what is writer mode? It is Visual Studio Code extension that allows you to temporary override editor settings and execute commands on activation & deactivation of extension. I use it for transforming VS Code into writing tool.

Going back to what is new in version 0.3.0? I totally rewrite writer mode. Why? I found out that having set of hardcoded settings is not scalable - previous version for example bumps line height to 21. What if I wanted to have line height of 24? I need to either update value in extension or figure out different way of handing it.

I also stumbled upon Building an ultimate writing machine from Sublime Text blog post and I really like the idea of having some kind of user/editor profiles that overrides certain settings.

I added 3 new settings:

You can find new version on VSCode marketplace.