Compare commits

..

4 Commits

5 changed files with 43 additions and 0 deletions

View File

@ -1,8 +1,19 @@
<code_scheme name="default" version="173">
<JSCodeStyleSettings version="0">
<option name="FUNCTION_EXPRESSION_BRACE_STYLE" value="2" />
</JSCodeStyleSettings>
<PHPCodeStyleSettings>
<option name="ANONYMOUS_BRACE_STYLE" value="2" />
<option name="NAMESPACE_BRACE_STYLE" value="2" />
</PHPCodeStyleSettings>
<codeStyleSettings language="JavaScript">
<option name="BRACE_STYLE" value="2" />
<option name="CLASS_BRACE_STYLE" value="2" />
<option name="METHOD_BRACE_STYLE" value="2" />
<option name="ELSE_ON_NEW_LINE" value="true" />
<option name="CATCH_ON_NEW_LINE" value="true" />
<option name="FINALLY_ON_NEW_LINE" value="true" />
</codeStyleSettings>
<codeStyleSettings language="PHP">
<option name="BRACE_STYLE" value="2" />
<option name="LAMBDA_BRACE_STYLE" value="2" />

8
github-copilot.xml Normal file
View File

@ -0,0 +1,8 @@
<application>
<component name="github-copilot">
<disabledLanguages>
<option value="CSS" />
<option value="HTML" />
</disabledLanguages>
</component>
</application>

View File

@ -1,4 +1,8 @@
<keymap version="1" name="KDE copy" parent="Default for KDE">
<action id="CloseContent">
<keyboard-shortcut first-keystroke="ctrl w" />
<keyboard-shortcut first-keystroke="shift ctrl w" />
</action>
<action id="MoveTabDown">
<keyboard-shortcut first-keystroke="shift alt 2" />
</action>
@ -9,4 +13,7 @@
<keyboard-shortcut first-keystroke="ctrl alt d" />
</action>
<action id="SelectIn" />
<action id="SurroundWith">
<keyboard-shortcut first-keystroke="shift ctrl alt s" />
</action>
</keymap>

View File

@ -12,4 +12,9 @@
<option name="CSS" value="true" />
</context>
</template>
<template name="bgcv" value="background-color: var(--$END$);" description="Background colour from var" toReformat="false" toShortenFQNames="true">
<context>
<option name="CSS" value="true" />
</context>
</template>
</templateSet>

12
templates/JavaScript.xml Normal file
View File

@ -0,0 +1,12 @@
<templateSet group="JavaScript">
<template name="dqs" value="document.querySelector($END$);" description="Query Selector" toReformat="false" toShortenFQNames="true">
<context>
<option name="JAVA_SCRIPT" value="true" />
</context>
</template>
<template name="dqsa" value="document.querySelectorAll($END$);&#10;" description="Query Selector All" toReformat="false" toShortenFQNames="true">
<context>
<option name="JAVA_SCRIPT" value="true" />
</context>
</template>
</templateSet>