-
-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathplugin.xml
More file actions
65 lines (63 loc) · 4.8 KB
/
Copy pathplugin.xml
File metadata and controls
65 lines (63 loc) · 4.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!-- Plugin Configuration File. Read more: https://plugins.jetbrains.com/docs/intellij/plugin-configuration-file.html -->
<idea-plugin require-restart="true">
<id>com.github.dinbtechit.vscodetheme</id>
<name>VSCode Theme</name>
<vendor>dinbtechit</vendor>
<idea-version/>
<depends>com.intellij.modules.platform</depends>
<depends config-file="lang-config/dinbtechit-javascript.xml" optional="true">JavaScript</depends>
<depends config-file="lang-config/dinbtechit-java.xml" optional="true">com.intellij.java</depends>
<depends config-file="lang-config/dinbtechit-dart.xml" optional="true">Dart</depends>
<depends config-file="lang-config/dinbtechit-python-community.xml" optional="true">PythonCore</depends>
<depends config-file="lang-config/dinbtechit-python.xml" optional="true">Pythonid</depends>
<depends config-file="lang-config/dinbtechit-kotlin.xml" optional="true">org.jetbrains.kotlin</depends>
<depends config-file="lang-config/dinbtechit-csharp.xml" optional="true">com.intellij.modules.rider</depends>
<depends config-file="lang-config/dinbtechit-fsharp.xml" optional="true">com.intellij.modules.rider</depends>
<depends config-file="lang-config/dinbtechit-php.xml" optional="true">com.jetbrains.php</depends>
<depends config-file="lang-config/dinbtechit-clion.xml" optional="true">com.intellij.cidr.lang</depends>
<depends config-file="lang-config/dinbtechit-go.xml" optional="true">org.jetbrains.plugins.go</depends>
<depends config-file="lang-config/dinbtechit-rust.xml" optional="true">com.jetbrains.rust</depends>
<depends config-file="lang-config/dinbtechit-sh.xml" optional="true">com.jetbrains.sh</depends>
<depends config-file="lang-config/dinbtechit-hcl.xml" optional="true">org.intellij.plugins.hcl</depends>
<!--<depends config-file="lang-config/dinbtechit-typescript.xml" optional="true">JavaScript</depends>-->
<extensions defaultExtensionNs="org.jetbrains.kotlin">
<supportsKotlinPluginMode supportsK2="true"/>
</extensions>
<extensions defaultExtensionNs="com.intellij">
<themeProvider order="first" id="dinbtechit-2179230b863b9b1d9f1eeb27ca4a3a70" path="themes/vscode_dark_modern.theme.json"/>
<themeProvider order="last" id="dinbtechit-7ef0c378d737e162955f3e028dcf9ccb" path="themes/vscode_dark.theme.json"/>
<themeProvider order="last" id="dinbtechit-e4968811e8c127f591d7e670706d4a3c" path="themes/vscode_light.theme.json"/>
<themeProvider order="last" id="dinbtechit-vscode-2026-dark" path="themes/vscode_2026_dark.theme.json"/>
<themeProvider order="last" id="dinbtechit-vscode-2026-light" path="themes/vscode_2026_light.theme.json"/>
<bundledColorScheme id="dinbtechit-7ef0c378d737e162955f3e028dcf9ccb3" path="themes/vscode_dark"/>
<bundledColorScheme id="dinbtechit-7ef0c378d737e162955f3e028dcf9ccb4" path="themes/vscode_dark_brighter"/>
<bundledColorScheme id="dinbtechit-e4968811e8c127f591d7e670706d4a3f" path="themes/vscode_light_modern"/>
<bundledColorScheme id="dinbtechit-vscode-2026-dark-scheme" path="themes/vscode_2026_dark"/>
<bundledColorScheme id="dinbtechit-vscode-2026-light-scheme" path="themes/vscode_2026_light"/>
<postStartupActivity implementation="com.github.dinbtechit.vscodetheme.startup.VSCodeStartupNotifyActivity"/>
<applicationService
serviceImplementation="com.github.dinbtechit.vscodetheme.settings.VSCodeThemeSettingsStore"/>
<notificationGroup id="VSCode Theme Notification Group" displayType="STICKY_BALLOON"/>
<!--https://github.com/dinbtechit/vscode-theme/issues/38 Default Annotator Issues-->
<!--<annotator language="" order="last" implementationClass="com.github.dinbtechit.vscodetheme.annotators.DefaultAnnotator"/>-->
<errorHandler implementation="com.github.dinbtechit.vscodetheme.diagostic.VSCodeErrorReportSubmitter"/>
</extensions>
<actions>
<action id="com.github.dinbtechit.vscodetheme.actions.DismissNotification"
class="com.github.dinbtechit.vscodetheme.actions.DismissNotification"
text="Dismiss" description="Dismiss notification">
</action>
<action id="com.github.dinbtechit.vscodetheme.actions.DonateAction"
class="com.github.dinbtechit.vscodetheme.actions.DonateAction"
text="Support">
</action>
<action id="com.github.dinbtechit.vscodetheme.actions.StarGithubRepoAction"
class="com.github.dinbtechit.vscodetheme.actions.StarGithubRepoAction"
text="Star Github Repo">
</action>
<action id="com.github.dinbtechit.vscodetheme.actions.WhatsNewAction"
class="com.github.dinbtechit.vscodetheme.actions.WhatsNewAction"
text="Star Github Repo">
</action>
</actions>
</idea-plugin>