Turn off highlights - phpstorm

I want to turn off PHPStorm's annoying highlighting for non-error related things.
I read their docs, which said to go to preferences->editor->inspections. I deselected all for SQL, yet I still get this green highlighting for no reason:
How do I disable this? It's quite distracting.

That's Language Injection in action.
You can:
Remove/change background color at Settings (Preferences on Mac) | Editor | Colors & Fonts | General --> Code | Injected language fragment
Disable that particular injection rule altogether at Settings (Preferences on Mac) | Editor | Language Injections

Related

PhpStorm: how to Make the inspector / debugger ignore stuff in comments?

I don't need it telling me I spelled the word "danggit!" incorrectly. I just want it to ignore the comments.
like this:
<?php
$a = 123;// simple as, danggit!
/* danggit, this frustrates me! */
also
"The word 'thru' is informal. Consider replacing it with through."
I dont want to see this, especially in comments
I don't need it telling me I spelled the word "danggit!" incorrectly. I just want it to ignore the comments.
You can configure where this "Typo" inspection should be applied at the following screen: Settings/Preferences | Editor | Inspections | Proofreading | Typo.
https://www.jetbrains.com/help/phpstorm/spellchecking.html#configure-the-typo-inspection
Danggit, now i'm getting "The word 'thru' is informal. Consider replacing it with through." I dont want to see this, especially in comments.
This is a different thing in action. This time it's Grammar.
Settings/Preferences | Editor | Natural Languages | Grammar and Style -- Here on a Scopes tab you can configure the same. https://www.jetbrains.com/help/phpstorm/grammar.html#scope
... or/and configure what rules to use (on a Rules tab): https://www.jetbrains.com/help/phpstorm/grammar.html#rules
In case if you need to configure too many of them, well... just disable the Grammar checks completely: Settings/Preferences | Editor | Inspections | Proofreading | Grammar

WebStorm Vue directives in HTML highlighting

Is there are way to change highlight the vue attributes and directives? Also in quotes.
There is no special color scheme for Vue.js.
But it looks as if Vue.js support is not enabled for your template anyway - #click is highlighted as syntax error, values appear as simple string literals. Normally this code is highlighted as follows:
i.e. attribute names are shown according to Attribute name preferences (Settings | Editor | Color Scheme | HTML), and values - according to JavaScript preferences for instance member functions/variables (Settings | Editor | Color Scheme | JavaScript)
Hint: you can assign preferred shortcut to Settings | Keymap | Other | Jump to Colors and Fonts and use it to navigate to color settings of element under cursor

PhpStorm 2017.2.4: highlight matching parentheses on selection

I've been searching for the Code Style setting to highlight the opening and closing parenthesis on selection.
Here is an image of an example using the theme WarmNeon:
I'm using my own edited version of the Solarized Light theme but I just can't find this particular setting: I searched on highlight, parenthesis and went through the settings manually to no avail.
Settings/Preferences
Editor | Color Scheme | General
Code | Matched brace

How do I stop PhpStorm 2016.2 from entering the form tag when I type the word "form" into a paragraph?

After typing the word "form" and entering a space, PhpStorm makes a form! No! No! How do I get PhpStorm to stop doing that?
p.s. stackoverflow won't let me post the images because my reputation is <10 :(
UPDATE. My progress.. or lack thereof:
I've done this without success:
Settings | Emmet | XML | Enable XML Emmet -- disable this option. (as recommended in How can I disable html tag completion in PHPStorm)
Settings | Editor | General | Code Completion | Autopopup code completion -- unchecked it (as recommended in Turn off autocomplete in PhpStorm)
Settings | Editor | General | SmartKeys | XML/HTML | Auto Close tags when typing

How can I disable html tag completion in PHPStorm

When I'm in HTML/Other context and type foobar and hit Tab it automatically turns into <foobar></foobar>. Is there any option to turn this kind of auto complete off?
Settings | Emmet | XML | Enable XML Emmet -- disable this option.