add vscode installation and config (fix #2)
This commit is contained in:
parent
5b133da522
commit
a44b7ddd1c
7 changed files with 315 additions and 3 deletions
137
files/vscode-settings.json
Normal file
137
files/vscode-settings.json
Normal file
|
@ -0,0 +1,137 @@
|
|||
{
|
||||
"terminal.integrated.fontFamily": "Hack",
|
||||
// "C_Cpp.clang_format_style": "{BasedOnStyle: LLVM, Language: Cpp, IndentWidth: 2, ColumnLimit: 110, BreakBeforeBraces: Attach, PointerAlignment: Left, AccessModifierOffset: -2, Cpp11BracedListStyle: true, AlignConsecutiveDeclarations: true, AlignConsecutiveAssignments: true, AlignEscapedNewlines: Left, AlignTrailingComments: true, IndentWrappedFunctionNames: false, AllowShortFunctionsOnASingleLine: Inline, SpacesBeforeTrailingComments: 2, FixNamespaceComments: true, ReflowComments: false, SortIncludes: false, SortUsingDeclarations: false}",
|
||||
"C_Cpp.clang_format_style": "file",
|
||||
"C_Cpp.clang_format_fallbackStyle": "{BasedOnStyle: LLVM, Language: Cpp, IndentWidth: 2, ColumnLimit: 110, BreakBeforeBraces: Attach, PointerAlignment: Left, AccessModifierOffset: -2, Cpp11BracedListStyle: true, AlignConsecutiveDeclarations: true, AlignConsecutiveAssignments: true, AlignEscapedNewlines: Left, AlignTrailingComments: true, IndentWrappedFunctionNames: false, AllowShortFunctionsOnASingleLine: Inline, SpacesBeforeTrailingComments: 2, FixNamespaceComments: true, ReflowComments: false, SortIncludes: false, SortUsingDeclarations: false}",
|
||||
"C_Cpp.clang_format_path": "/usr/local/bin/clang-format",
|
||||
"C_Cpp.intelliSenseEngine": "Tag Parser",
|
||||
"editor.tabSize": 2,
|
||||
"editor.renderWhitespace": "boundary",
|
||||
"editor.minimap.enabled": false,
|
||||
"editor.formatOnSave": true,
|
||||
"editor.formatOnType": false,
|
||||
"editor.multiCursorModifier": "ctrlCmd",
|
||||
"[json]": {
|
||||
"editor.tabSize": 4
|
||||
},
|
||||
"[python]": {
|
||||
"editor.tabSize": 4
|
||||
},
|
||||
"[html]": {
|
||||
"editor.formatOnSave": false
|
||||
},
|
||||
"[plaintext]": {
|
||||
"editor.tabSize": 2,
|
||||
"editor.formatOnSave": false
|
||||
},
|
||||
"[latex]": {
|
||||
"editor.formatOnSave": false,
|
||||
"editor.wordWrap": "on"
|
||||
},
|
||||
"python.linting.pylintPath": "/usr/local/bin/pylint",
|
||||
"python.pythonPath": "/usr/local/bin/python3",
|
||||
"window.zoomLevel": 0,
|
||||
"latex-workshop.view.pdf.viewer": "tab",
|
||||
"latex-workshop.latex.recipes": [
|
||||
{
|
||||
"name": "latexmk 🔃",
|
||||
"tools": [
|
||||
"latexmk"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "pdflatex, biber, makeglossaries, pdflatex x2",
|
||||
"tools": [
|
||||
"pdflatex",
|
||||
"biber",
|
||||
"makeglossaries",
|
||||
"pdflatex",
|
||||
"pdflatex"
|
||||
]
|
||||
}
|
||||
],
|
||||
"latex-workshop.latex.tools": [
|
||||
{
|
||||
"name": "latexmk",
|
||||
"command": "latexmk",
|
||||
"args": [
|
||||
"-synctex=1",
|
||||
"-interaction=nonstopmode",
|
||||
"-file-line-error",
|
||||
"-pdf",
|
||||
"-outdir=%OUTDIR%",
|
||||
"%DOC%"
|
||||
],
|
||||
"env": {}
|
||||
},
|
||||
{
|
||||
"name": "pdflatex",
|
||||
"command": "pdflatex",
|
||||
"args": [
|
||||
"-synctex=1",
|
||||
"-interaction=nonstopmode",
|
||||
"-file-line-error",
|
||||
"%DOC%"
|
||||
],
|
||||
"env": {}
|
||||
},
|
||||
{
|
||||
"name": "makeglossaries",
|
||||
"command": "makeglossaries",
|
||||
"args": [
|
||||
"%DOCFILE%"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "biber",
|
||||
"command": "biber",
|
||||
"args": [
|
||||
"%DOCFILE%"
|
||||
],
|
||||
"env": {}
|
||||
}
|
||||
],
|
||||
"latex-workshop.latex.clean.fileTypes": [
|
||||
"*.aux",
|
||||
"*.bbl",
|
||||
"*.blg",
|
||||
"*.idx",
|
||||
"*.ind",
|
||||
"*.lof",
|
||||
"*.lot",
|
||||
"*.out",
|
||||
"*.toc",
|
||||
"*.acn",
|
||||
"*.acr",
|
||||
"*.alg",
|
||||
"*.glg",
|
||||
"*.glo",
|
||||
"*.gls",
|
||||
"*.ist",
|
||||
"*.fls",
|
||||
"*.log",
|
||||
"*.fdb_latexmk",
|
||||
"*.bcf",
|
||||
"*.dvi",
|
||||
"*.glsdefs",
|
||||
"*.nlo",
|
||||
"*.run.xml",
|
||||
"*.slo",
|
||||
"*.lol",
|
||||
"*.ilg",
|
||||
"*.nls",
|
||||
"*.synctex.gz",
|
||||
"*.slg",
|
||||
"*.sls"
|
||||
],
|
||||
"markdown-pdf.displayHeaderFooter": false,
|
||||
"markdown-pdf.margin.bottom": "1.5cm",
|
||||
"markdown-pdf.margin.left": "2cm",
|
||||
"markdown-pdf.margin.right": "1.5cm",
|
||||
"debug.allowBreakpointsEverywhere": true,
|
||||
"latex-workshop.latex.autoBuild.run": "never",
|
||||
"git.confirmSync": false,
|
||||
"explorer.confirmDelete": false,
|
||||
"extensions.ignoreRecommendations": true,
|
||||
"workbench.colorTheme": "Default Light+"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue