55 lines
2.1 KiB
JSON
55 lines
2.1 KiB
JSON
{
|
|
"explorer.confirmDelete": false,
|
|
"explorer.confirmDragAndDrop": false,
|
|
"security.workspace.trust.untrustedFiles": "open",
|
|
"[python]": {
|
|
"editor.defaultFormatter": "mikoz.black-py"
|
|
},
|
|
"cSpell.userWords": [
|
|
"enthéogènes",
|
|
"Picasoft",
|
|
"psycholytique",
|
|
"psychotomimétique"
|
|
],
|
|
"cSpell.language": "en,fr",
|
|
"black-py.useIntegratedTerminal": true,
|
|
"workbench.iconTheme": "simple-icons",
|
|
"workbench.colorTheme": "Catppuccin Macchiato",
|
|
"git.openRepositoryInParentFolders": "always",
|
|
"syncSettings.crons": {
|
|
"review": "0 * * * *", // every hour
|
|
"download": "0 9 * * *", // at 9AM, every day
|
|
"upload": "0 17 * * *" // at 5PM, every day
|
|
},
|
|
"syncSettings.hostname": "{{hostname}}",
|
|
"syncSettings.hooks.preDownload": "git -C ~/.config/codium-settings pull",
|
|
"syncSettings.hooks.postUpload": "git -C ~/.config/codium-settings push",
|
|
"syncSettings.gitInitMessage": "Init settings from {{hostname}}, profile « {{profile}} »",
|
|
"syncSettings.gitUpdateMessage": "Update settings from {{hostname}}, profile « {{profile}} »",
|
|
"latex-workshop.latex.recipe.default": "tectonic",
|
|
"latex-workshop.latex.autoBuild.run": "onSave",
|
|
"latex-workshop.latex.outDir": "%WORKSPACE_FOLDER%/build/",
|
|
"latex-workshop.view.pdf.viewer": "tab",
|
|
"latex-workshop.latex.recipes": [
|
|
{
|
|
"name": "tectonic",
|
|
"tools": ["tectonic"]
|
|
}
|
|
],
|
|
"latex-workshop.latex.tools": [
|
|
{
|
|
"name": "tectonic",
|
|
"command": "tectonic",
|
|
"args": ["-X", "build", "--keep-intermediates"],
|
|
"env": {}
|
|
}
|
|
],
|
|
"cSpell.enabled": false,
|
|
"redhat.telemetry.enabled": false,
|
|
// See https://www.reddit.com/r/vscode/comments/pqfpnc/i_realized_why_i_was_annoyed_with_vscode_and/
|
|
"editor.tabCompletion": "on",
|
|
"editor.quickSuggestionsDelay": 500,
|
|
"editor.suggestOnTriggerCharacters": false,
|
|
// See https://stackoverflow.com/questions/60175608/visual-studio-code-and-jinja-templates
|
|
"emmet.includeLanguages": {"jinja-py": "py", "jinja-shell": "shellscript"},
|
|
} |