GitHub is a developer platform that allows developers to create, store, manage and share their code. --WikiPedia
大约 2 分钟
GitHub is a developer platform that allows developers to create, store, manage and share their code. --WikiPedia
核心思想:内容与格式的分离
安装:见知乎老哥专栏:如何安装 latex
但是我选择把LATEX集成进 VSCode,集成教程可以看这篇文章:Visual Studio Code (vscode) 配置 LaTeX
2024.03.18,我终于狠下心来鼓起勇气开始看 C++ 的环境配置,看了一晚上基本算是看了一个大概。
我采用 Clang-Tidy + Clang-format 作为 linter 和 formatter。
插件下载:Clang-Format, CS 128 Clang-Tidy
在settings.json中加入:
{
"editor.formatOnSave": true,
"clang-format.executable": "/absolute/path/to/clang-format"
}