2024-04-03 00:09:47 +02:00
|
|
|
import type { PluginShikiOptions } from "@astrojs/starlight/expressive-code";
|
2024-04-07 02:21:10 +02:00
|
|
|
import { shulkerscriptGrammar } from "./shulkerscript-grammar";
|
2024-04-03 00:09:47 +02:00
|
|
|
|
|
|
|
const config: PluginShikiOptions = {
|
|
|
|
langs: [
|
2024-04-07 02:21:10 +02:00
|
|
|
shulkerscriptGrammar,
|
|
|
|
],
|
2024-04-03 00:09:47 +02:00
|
|
|
};
|
|
|
|
|
2024-04-07 02:21:10 +02:00
|
|
|
export default config;
|