# hexo-config-plus **Repository Path**: jiangtj/hexo-config-plus ## Basic Information - **Project Name**: hexo-config-plus - **Description**: Read and override theme configuration or languages from _data - **Primary Language**: JavaScript - **License**: LGPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-03-15 - **Last Updated**: 2022-04-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Hexo Config Plus [![](https://img.shields.io/npm/v/@jiangtj/hexo-config-plus.svg?style=popout-square)](https://www.npmjs.com/package/@jiangtj/hexo-config-plus) ![npm](https://img.shields.io/npm/l/@jiangtj/hexo-config-plus?style=popout-square) Read and override theme configuration or languages from _data, extract from [NexT](https://github.com/theme-next/hexo-theme-next) theme ## Install ```bash yarn add @jiangtj/hexo-config-plus ``` ## Use ```yml config_plus: theme: next languages: languages ``` And them Create `next.yml` or `languages.yml` in `${hexo}/source/_data` next.yml ```js // config in your theme config bar: foo: true ``` languages.yml ```js // override languages [zh-CN]: menu: home: 首页 archives: 归档 categories: 分类 tags: 标签 about: 关于 search: 搜索 sitemap: 站点地图 commonweal: 公益 404 en: // ... ```