感谢你访问我的博客!如果这里的内容对你有帮助,欢迎分享给更多人。😊
diff --git a/content/posts/configure-fish-on-windows/index.md b/content/posts/configure-fish-on-windows/index.md
index ea8851b..9a55fe2 100644
--- a/content/posts/configure-fish-on-windows/index.md
+++ b/content/posts/configure-fish-on-windows/index.md
@@ -1,5 +1,5 @@
---
-title: "在 Windows 下配置 Fish1"
+title: "在 Windows 下配置 Fish"
published: true
date: 2025-10-05
updatedDate: 2025-10-03
@@ -10,7 +10,7 @@ tags: ["Development", "Windows", "Fish"]
categories: ["Technology"]
---
-# 前言
+## 前言
在经历了 Linux 下一系列的生态折磨后,我最终回归了 Windows 的怀抱。
@@ -28,7 +28,7 @@ categories: ["Technology"]
### 安装 MSYS2
-```bash
+```bash [Terminal]
scoop install msys2
```
@@ -46,7 +46,7 @@ scoop install msys2
在 MSYS2 环境下运行:
-```bash
+```bash [Terminal]
sed -i "s#mirror.msys2.org/#mirrors.ustc.edu.cn/msys2/#g" /etc/pacman.d/mirrorlist*
pacman -Syy
```
@@ -55,7 +55,7 @@ pacman -Syy
修改`/etc/nsswitch.conf`文档
-```[/etc/nsswitch.conf]
+```plaintext [/etc/nsswitch.conf]
# Begin /etc/nsswitch.conf
passwd: files db
@@ -71,18 +71,6 @@ db_gecos: cygwin desc
# End /etc/nsswitch.conf
```
-::Warning{title="你好"}
-Warning!
-::
-
-::Warning{title="你好"}
-Warning1!
-::
-
-```python [main.py]
-print("hello")
-```
-
完成,可以愉快的使用 Fish 了!

diff --git a/content/posts/my-rime-config/index.md b/content/posts/my-rime-config/index.md
index 57a39a4..7458d29 100644
--- a/content/posts/my-rime-config/index.md
+++ b/content/posts/my-rime-config/index.md
@@ -1,6 +1,6 @@
---
title: "我的 Rime 输入法配置"
-published: true
+published: false
date: 2026-01-01
updatedDate: 2025-01-01
description: "本文介绍了我的 Rime 输入法配置"
@@ -10,4 +10,6 @@ tags: ["Rime"]
categories: ["Rime"]
---
-#
+# 我的 Rime 输入法配置
+
+## 介绍
diff --git a/nuxt.config.ts b/nuxt.config.ts
index 36b03aa..dc40135 100644
--- a/nuxt.config.ts
+++ b/nuxt.config.ts
@@ -10,10 +10,8 @@ export default defineNuxtConfig({
css: ["./app/assets/css/main.css"],
site: {
- // url: siteConfig.siteMeta.url,
- url: "https://blog.rhen.cloud",
- // name: siteConfig.siteMeta.title,
- name: "RhenCloud's Blog",
+ url: siteConfig.siteMeta.url,
+ name: siteConfig.siteMeta.title,
description: siteConfig.siteMeta.description,
author: siteConfig.siteMeta.author,
},
@@ -29,10 +27,8 @@ export default defineNuxtConfig({
"@nuxtjs/sitemap",
"@nuxt/content",
"@nuxtjs/color-mode",
- // "@nuxtjs/tailwindcss",
- "@formkit/auto-animate",
"@nuxt/ui",
- // '@stefanobartoletti/nuxt-social-share',
+ "@formkit/auto-animate",
],
vite: {