自定义 Rider 的配置和缓存位置

🍖问题

用过 Rider 的设置同步插件的应该都知道, 看似同步了很多设置, 而实际上呢, 虽然不能说是完全没用吧, 但也是屁用没有

于是自己手动同步各项设置就成了重中之重

设置同步

🥝新建 Rider 的配置和缓存目录

推荐在 JetBrains 目录中新建 rider , config , system 三个目录

  • rider 为存放主程序的位置
  • config 为存放配置文件和插件的位置
  • system 为存放缓存和日志的位置

🍹Rider 用户配置文件

Rider 自定义配置文件在这个位置

{Rider}/bin/idea.properties

配置文件

🍙自定义 Rider 配置

打开 idea.properties 文件, 需要修改的位置有 4 个: 配置存放目录, 缓存存放目录, 插件存放目录, 日志存放目录, 可以参照以下配置

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#---------------------------------------------------------------------
# Uncomment this option if you want to customize a path to the settings directory.
#---------------------------------------------------------------------
idea.config.path=E:/Program/JetBrains/config

#---------------------------------------------------------------------
# Uncomment this option if you want to customize a path to the caches directory.
#---------------------------------------------------------------------
idea.system.path=E:/Program/JetBrains/system

#---------------------------------------------------------------------
# Uncomment this option if you want to customize a path to the user-installed ugins directory.
#---------------------------------------------------------------------
idea.plugins.path=${idea.config.path}/plugins

#---------------------------------------------------------------------
# Uncomment this option if you want to customize a path to the logs directory.
#---------------------------------------------------------------------
idea.log.path=${idea.system.path}/log

🌴迁移默认设置到新目录

配置文件的迁移

  • 默认位置 C:\Users\Administrator\AppData\Roaming\JetBrains\{rider_version}\

将上述文件夹中的文件全部移动到新的 config 文件夹中

缓存文件的迁移

  • 默认位置 C:\Users\Administrator\AppData\Local\JetBrains\{rider_version}\

将上述文件夹中的文件全部移动到新的 system 文件夹中

最后重启 Rider 即可