IntelliJ IDEA、Visual Studio Code自定义默认配置、插件路径

IntelliJ IDEA

  1. 修改${IntelliJ IDEA安装目录}\bin\idea.properties文件。
  • 设置项默认是被注释掉的,打开注释之后才算启用该属性,需要特别注意的是斜杠方向,这里用的是正斜杠。
  • 进入系统用户目录(eg:C:\Users${用户名}\)备份默认配置目录(eg:.IntelliJIdea2019.3)后,有备无患;
  • 将用户目录下的配置剪切到修改后的目录。(拷贝的需要删除)
  • 启动IDEA
  1. 推荐使用 IDEA 自带菜单中的 Help -> Edit Custom Properties 来进行个性化配置。
  • 通过Edit Custom Properties 进行编辑会创建一份配置文件在用户目录下,这样升级后仍然保留配置。
  • 个性化属性可以从${IntelliJ IDEA安装目录}\bin\idea.properties的文件中拷贝
  1. 以下是idea.properties的例子
# Use ${idea.home.path} macro to specify location relative to IDE installation home.
# Use ${xxx} where xxx is any Java property (including defined in previous lines of this file) to refer to its value.
# Note for Windows users: please make sure you're using forward slashes (e.g. c:/idea/system).

#---------------------------------------------------------------------
# Uncomment this option if you want to customize path to IDE config folder. Make sure you're using forward slashes.
# IntelliJ IDEA 个性化化配置目录
#---------------------------------------------------------------------
idea.config.path=${idea.home.path}/.IntelliJIdea/config

#---------------------------------------------------------------------
# Uncomment this option if you want to customize path to IDE system folder. Make sure you're using forward slashes.
# IntelliJ IDEA系统文件目录
#---------------------------------------------------------------------
idea.system.path=${idea.home.path}/.IntelliJIdea/system

#---------------------------------------------------------------------
# Uncomment this option if you want to customize path to user installed plugins folder. Make sure you're using forward slashes.
# IntelliJ IDEA插件存放目录
#---------------------------------------------------------------------
idea.plugins.path=${idea.config.path}/plugins

#---------------------------------------------------------------------
# Uncomment this option if you want to customize path to IDE logs folder. Make sure you're using forward slashes.
# IntelliJ IDEA日志目录
#---------------------------------------------------------------------
idea.log.path=${idea.system.path}/log

其他jetbrains产品修改方式类似

Visual Studio Code

默认安装在C:\Users\用户名.vscode\extensions,

  1. VS Code启动命令可以修改可以指定加载插件的位置
  • 已安装 Visual Studio Code, 并且将其添加到了环境变量 path 中
  • 打开cmd,
  • 输入code --help, 显示帮助信息
  • 输入:code --extensions-dir 插件存放目录
  • 回车则启动vscode,此时安装的插件会放到指定的目录
  • eg:
    code --extensions-dir 插件存放目录
  1. 修改快捷方式,指自定义插件的位置
    • 找到vs code快捷方式
    • 右键 -》属性
      IntelliJ IDEA、Visual Studio Code自定义默认配置、插件路径_第1张图片
    • 修改目标选项
      IntelliJ IDEA、Visual Studio Code自定义默认配置、插件路径_第2张图片
    • 添加启动时指定插件目录 --extensions-dir 插件目录
      IntelliJ IDEA、Visual Studio Code自定义默认配置、插件路径_第3张图片
      完整内容:
"D:\Program Files (x86)\Microsoft VS Code\Code.exe" --extensions-dir "D:\Program Files (x86)\Microsoft VS Code\.vscode\extensions"
  • 应用 -》确定

你可能感兴趣的:(工具使用技巧)