generated from JetBrains/intellij-platform-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathplugin.xml
51 lines (48 loc) · 3.61 KB
/
plugin.xml
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
<!-- 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 since-build="213"/>
<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.xml" optional="true">PythonCore</depends>
<depends config-file="lang-config/dinbtechit-python-community.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-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">org.rust.lang</depends>
<depends config-file="lang-config/dinbtechit-sh.xml" optional="true">com.jetbrains.sh</depends>
<!--<depends config-file="lang-config/dinbtechit-typescript.xml" optional="true">JavaScript</depends>-->
<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"/>
<bundledColorScheme id="dinbtechit-7ef0c378d737e162955f3e028dcf9ccb3" path="themes/vscode_dark"/>
<bundledColorScheme id="dinbtechit-7ef0c378d737e162955f3e028dcf9ccb4" path="themes/vscode_dark_brighter"/>
<postStartupActivity implementation="com.github.dinbtechit.vscodetheme.startup.VSCodeStartupNotifyActivity"/>
<applicationService
serviceImplementation="com.github.dinbtechit.vscodetheme.settings.VSCodeThemeSettingsStore"/>
<applicationService serviceImplementation="com.github.dinbtechit.vscodetheme.services.ApplicationService"/>
<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"/>-->
</extensions>
<actions>
<action id="AlwaysApplyThemeAction" class="com.github.dinbtechit.vscodetheme.actions.AlwaysApplyThemeAction"
text="Always Apply" description="Always action">
</action>
<action id="DismissNotification" class="com.github.dinbtechit.vscodetheme.actions.DismissNotification"
text="Dismiss" description="Dismiss notification">
</action>
<action id="Support" class="com.github.dinbtechit.vscodetheme.actions.DonateAction"
text="Support">
</action>
<action id="StarGithub" class="com.github.dinbtechit.vscodetheme.actions.StarGithubRepoAction"
text="Star Github Repo">
</action>
</actions>
</idea-plugin>