Visual Studio Code
Extensions
- C/C++
- Chinese ( Simplified) Language Pack for Visual Studio Code
- Doxygen Documentation Generator
- Markdown All in One
- Python
- TODO Highlight
- Vim
- Wakatime
- YAML Support by Red Hat
- vscode-icons
- autoconf
- LaTex Workshop
添加 Visual Studio Code 命令行到 Mac OS X 环境变量
在环境变量中加入下面一行,或者bashrc亦或者zsh,然后就可以在终端输入code
来启动了。
1 | code () { VSCODE_CWD="$PWD" open -n -b "com.microsoft.VSCode" --args $* ;} |
增加xelatex用于编译中文文章
只需要在tex文件的最前面,加上% !TEX program = xelatex
,在编译的时候就会直接调用xelatex。
1 |
|