Introduction
About 260 wordsLess than 1 minute
2025-10-09
The theme comes with built-in plugins that extend its numerous functionalities. You can configure these internal plugins through the plugins
option.
Configuration
All plugins used internally by the theme are configured within the plugins
field.
.vuepress/config.ts
import { defineUserConfig } from 'vuepress'
import { plumeTheme } from 'vuepress-theme-plume'
export default defineUserConfig({
theme: plumeTheme({
plugins: {
// more options...
}
}),
})
Plugin List
- @vuepress/plugin-nprogress - Page loading progress bar
- @vuepress/plugin-photo-swipe - Image preview
- @vuepress/plugin-reading-time - Article reading time
- @vuepress/plugin-watermark - Article watermark
- @vuepress-plume/plugin-search - Local search
- @vuepress/plugin-docsearch - Algolia documentation search
- @vuepress/plugin-copy-code - Code copy
- @vuepress/plugin-shiki - Syntax highlighting
- @vuepress/plugin-comment - Article comments
- @vuepress/plugin-markdown-hint - Markdown hints
- @vuepress/plugin-markdown-image - Markdown images
- @vuepress/plugin-markdown-math - Markdown mathematical formulas
- @vuepress/plugin-markdown-include - Markdown file inclusion
- @vuepress/plugin-markdown-chart - Markdown charts chartjs / echarts / mermaid / flowchart / markmap / plantUML
- @vuepress/plugin-replace-assets - Asset link replacement
- vuepress-plugin-md-power - Markdown Power
- @vuepress/plugin-git - Git commit information
- @vuepress/plugin-cache - Page compilation cache
- @vuepress/plugin-seo - SEO optimization
- @vuepress/plugin-sitemap - Sitemap
Tips
You don't need to install these built-in plugins separately, nor should you add them to vuepress config > plugins. The theme has already handled their integration internally.