ansible-role-common/files/vscode-settings.json

145 lines
4.8 KiB
JSON

{
"terminal.integrated.fontFamily": "Hack",
"terminal.integrated.scrollback": 1000000,
// "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_sortIncludes": true,
"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": "Default",
"cmake.statusbar.visibility": "icon",
"cmake.generator": "Ninja",
"cmake.configureOnOpen": true,
"C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
"git-graph.showStatusBarItem": false,
"editor.tabSize": 2,
"editor.renderWhitespace": "boundary",
"editor.minimap.enabled": false,
"editor.formatOnSave": true,
"editor.formatOnType": false,
"editor.multiCursorModifier": "ctrlCmd",
"diffEditor.ignoreTrimWhitespace": false,
"[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+"
}