一、设置字体大小
①界面字体大小
②代码字体大小
二、设置端口和默认执行路径
①设置默认路径
②设置默认端口(两种方法)
第一种:修改端口注手动输入不行
第二种:修改配置文件
首先我们要进入phpstorm的mac配置文件路径C:\Users\zbg\.WebIde100\config\options
(打开Finder然后使用快捷键command+shift+g就会出现前往文件夹,将路径输入按回车就可以了。)找找配置文件“other.xml”,“other.xml"的文件内容如下:
<application> <component name="BuiltInServerOptions" builtInServerPort="63342" /></application>
将phpstorm配置文件改成如下即可:
<application> <component name="BuiltInServerOptions" builtInServerPort="80" /></application>
三、设置默认编码