Remove ctrl+backspace > DeleteWordLeft binding.
This is a good binding and I think it makes sense to have it as a default, however
during testing I have discovered that not all terminals present these keys to Micro
the same way. For example, in Xterm for some reason "OldBackspace" is the backspace
key and "Backspace" is ctrl+backspace, so unfortunately just pressing backspace invokes
DeleteWordLeft with the binding as committed.
In the case of Xterm, the correct way to bind ctrl+backspace to DeleteWordLeft would be
like this:
"Backspace": "DeleteWordLeft",
"OldBackspace": "Backspace"
In any case, it is probably best we do not set this by default and leave it up to the user
to decide if they would like to set this binding on their own.
Add syntax highlighting for config files opened in Micro that don't directly call a shell.
* Add a syntax definition for `filetype: conf` in `syntax/conf.yaml` with some basic rules (for example, highlighting commented lines);
* Define `/etc/*` and `/home/*/.config/*` as conf filetype in `settings.json`, because they contain a lot of config files that don't end in ".conf" or ".cfg".