logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git

index.ts (348B)


  1. import type { Theme } from 'vitepress'
  2. import DefaultTheme from 'vitepress/theme'
  3. import { enhanceAppWithTabs } from 'vitepress-plugin-tabs/client'
  4. import QMKLayout from './QMKLayout.vue'
  5. import './custom.css'
  6. export default {
  7. extends: DefaultTheme,
  8. Layout: QMKLayout,
  9. enhanceApp({ app }) {
  10. enhanceAppWithTabs(app)
  11. }
  12. } satisfies Theme