diff options
| author | Fuwn <[email protected]> | 2021-09-01 23:25:12 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-09-01 23:25:12 -0700 |
| commit | 27166a47ef5aa6787a91336cb79f97a12e472e69 (patch) | |
| tree | 12954a2d14a40e1ed8bf1a11c1cd469cefdfb3e2 | |
| download | jetbrains-27166a47ef5aa6787a91336cb79f97a12e472e69.tar.xz jetbrains-27166a47ef5aa6787a91336cb79f97a12e472e69.zip | |
RD-2021.2.1 <fuwnz@FUWN-PC Create laf.xml, ide.general.xml, filetypes.xml, keymap.xml, vcs.xml, editor.codeinsight.xml, colors.scheme.xml, editor.xml, debugger.xml, codeLens.xml
| -rw-r--r-- | _windows/keymap.xml | 5 | ||||
| -rw-r--r-- | codeLens.xml | 7 | ||||
| -rw-r--r-- | colors.scheme.xml | 5 | ||||
| -rw-r--r-- | debugger.xml | 20 | ||||
| -rw-r--r-- | editor.codeinsight.xml | 5 | ||||
| -rw-r--r-- | editor.xml | 14 | ||||
| -rw-r--r-- | filetypes.xml | 5 | ||||
| -rw-r--r-- | ide.general.xml | 8 | ||||
| -rw-r--r-- | laf.xml | 5 | ||||
| -rw-r--r-- | vcs.xml | 6 |
10 files changed, 80 insertions, 0 deletions
diff --git a/_windows/keymap.xml b/_windows/keymap.xml new file mode 100644 index 0000000..e986c35 --- /dev/null +++ b/_windows/keymap.xml @@ -0,0 +1,5 @@ +<application> + <component name="KeymapManager"> + <active_keymap name="ReSharper" /> + </component> +</application>
\ No newline at end of file diff --git a/codeLens.xml b/codeLens.xml new file mode 100644 index 0000000..03c48e2 --- /dev/null +++ b/codeLens.xml @@ -0,0 +1,7 @@ +<application> + <component name="CodeLensSettings"> + <enabled> + <map /> + </enabled> + </component> +</application>
\ No newline at end of file diff --git a/colors.scheme.xml b/colors.scheme.xml new file mode 100644 index 0000000..16512a9 --- /dev/null +++ b/colors.scheme.xml @@ -0,0 +1,5 @@ +<application> + <component name="EditorColorsManagerImpl"> + <global_color_scheme name="Rider Dark" /> + </component> +</application>
\ No newline at end of file diff --git a/debugger.xml b/debugger.xml new file mode 100644 index 0000000..3c0f37d --- /dev/null +++ b/debugger.xml @@ -0,0 +1,20 @@ +<application> + <component name="XDebuggerSettings"> + <data-views> + <option name="valueLookupDelay" value="150" /> + </data-views> + <general /> + <debuggers> + <debugger id="dotnet_debugger"> + <configuration> + <option name="breakOnUserUnhandledExceptions" value="true" /> + </configuration> + </debugger> + <debugger id="javascript"> + <configuration> + <custom-object-presentation /> + </configuration> + </debugger> + </debuggers> + </component> +</application>
\ No newline at end of file diff --git a/editor.codeinsight.xml b/editor.codeinsight.xml new file mode 100644 index 0000000..0381806 --- /dev/null +++ b/editor.codeinsight.xml @@ -0,0 +1,5 @@ +<application> + <component name="RiderCodeCompletionExtraSettings"> + <option name="allowToCompleteWithWhitespace" value="false" /> + </component> +</application>
\ No newline at end of file diff --git a/editor.xml b/editor.xml new file mode 100644 index 0000000..b520954 --- /dev/null +++ b/editor.xml @@ -0,0 +1,14 @@ +<application> + <component name="CodeInsightSettings"> + <option name="completionCaseSensitive" value="2" /> + <option name="selectAutopopupSuggestionsByChars" value="true" /> + <option name="AUTO_POPUP_JAVADOC_INFO" value="true" /> + <option name="COMPLETION_CASE_SENSITIVE" value="2" /> + <option name="SELECT_AUTOPOPUP_SUGGESTIONS_BY_CHARS" value="true" /> + <option name="AUTOCOMPLETE_ON_CODE_COMPLETION" value="false" /> + </component> + <component name="EditorSettings"> + <option name="STRIP_TRAILING_SPACES" value="None" /> + <option name="IS_WHEEL_FONTCHANGE_ENABLED" value="true" /> + </component> +</application>
\ No newline at end of file diff --git a/filetypes.xml b/filetypes.xml new file mode 100644 index 0000000..5186abd --- /dev/null +++ b/filetypes.xml @@ -0,0 +1,5 @@ +<application> + <component name="FileTypeManager" version="18"> + <ignoreFiles list="*.pyc;*.pyo;*.rbc;*.yarb;.DS_Store;.git;.hg;.svn;CVS;__pycache__;_svn;vssver.scc;vssver2.scc" /> + </component> +</application>
\ No newline at end of file diff --git a/ide.general.xml b/ide.general.xml new file mode 100644 index 0000000..3ef9267 --- /dev/null +++ b/ide.general.xml @@ -0,0 +1,8 @@ +<application> + <component name="GeneralSettings"> + <option name="reopenLastProject" value="false" /> + </component> + <component name="Registry"> + <entry key="rdclient.asyncActions" value="false" /> + </component> +</application>
\ No newline at end of file @@ -0,0 +1,5 @@ +<application> + <component name="LafManager" autodetect="false"> + <laf class-name="com.intellij.ide.ui.laf.darcula.DarculaLaf" themeId="RiderDark" /> + </component> +</application>
\ No newline at end of file @@ -0,0 +1,6 @@ +<application> + <component name="VcsApplicationSettings"> + <option name="COMMIT_FROM_LOCAL_CHANGES" value="true" /> + <option name="SHOW_EDITOR_PREVIEW_ON_DOUBLE_CLICK" value="false" /> + </component> +</application>
\ No newline at end of file |