Hexo Next主题添加搜索功能 发表于 2024-06-08 更新于 2026-01-19 分类于 网络相关 hexo的NexT主题添加搜索非常简单,而且效果很好,需要用到第三方插件hexo-generator-searchdb。 安装hexo-generator-searchdb1npm install hexo-generator-searchdb 修改站点配置文件_config.yml在_config.yml中添加下面内容 123456search: path: search.xml field: post content: true format: html 修改NexT配置文件_config.next.yml 阅读全文 »
在ubuntu 24.04上安装vmware workstation 17.5.2 发表于 2024-06-07 更新于 2026-01-19 分类于 软件应用 下载vmware内核补丁虽然是17.5.1版本的,但经实测,完全兼容17.5.2 1wget https://github.com/mkubecek/vmware-host-modules/archive/workstation-17.5.1.tar.gz 解压文件1tar -xzf workstation-17.5.1.tar.gz 进入解压后的文件目录12cd vmware-host-modules-workstation-17.5.1/ 阅读全文 »
hexo自动摘要设置 发表于 2024-06-07 更新于 2026-01-19 分类于 网络相关 NexT主题最新版本已经不支持自动摘要设置了,需要用的第三方插件hexo-abbrlink 安装hexo-exerpt1npm install hexo-excerpt --save 设置hexo-excerpt在hexo的配置文件_config.yml中,加入下面的内容: 12345excerpt: depth: 5 excerpt_excludes: [] more_excludes: [] hideWholePostExcerpts: true
Git的一些必要设置 发表于 2024-06-07 更新于 2026-01-19 分类于 软件应用 配置用户名1git config --global user.name "Your Name" 配置邮箱:1git config --global user.email "email@example.com" 保存密码1git config --global credential.helper store 设置代理 阅读全文 »
hexo安装和配置主题 发表于 2024-06-07 更新于 2026-01-19 分类于 网络相关 安装hexo1npm install hexo-cli -g 建站123hexo init <folder>cd <folder>npm install 主题安装NexT主题12cd hexo-sitenpm install hexo-theme-next 阅读全文 »