VS code配置Github风格样式

翻译源地址:https://gist.github.com/BigstickCarpet/5d31c053d0b1d52389eb2723f7550907,根据需要做了一定的删减


VS code简直是宇宙神器,但是在使用的过程中,发现神器也是有需要定制的地方,比如在用VS code写markdown文件的时候想使用Github风格的样式。具体的配置步骤如下:

1. 下载Github风格CSS文件,链接为Github-style.css; 并把该附件放到VS code默认的设置文件夹:

  • Windows %APPDATA%\Code\User\settings.json
  • Mac $HOME/Library/Application Support/Code/User/settings.json
  • Linux $HOME/.config/Code/User/settings.json

2. 编辑VS code的设置,可以直接编辑VS code的settings.json文件,也可以在界面上file--preferences--settings,下拉找到markwown,然后编辑。

将markdown.styles[]修改为markdown.styles[github-markdown.css]

3.重启markdown即可生效(这步不是必须的)

你可能感兴趣的:(VS code配置Github风格样式)