dotfiles/vscode/settings.json

118 lines
3.5 KiB
JSON
Raw Permalink Normal View History

{
"editor.inlineSuggest.enabled": true,
"git.autofetch": true,
"github.copilot.enable": {
2023-11-20 11:20:55 -06:00
"*": false,
"plaintext": true,
2024-04-17 21:41:22 -05:00
"markdown": false,
"scminput": false,
"yaml": true,
"python": true
},
"git.confirmSync": false,
"arduino.useArduinoCli": true,
"[python]": {
"editor.formatOnType": true,
2024-02-28 13:13:28 -06:00
"editor.defaultFormatter": "Procratstinator.gray-formatter"
},
"[markdown]": {
"editor.defaultFormatter": "DavidAnson.vscode-markdownlint"
},
"auto-build.defaultEnv.name": "STM32G0B1RE_btt",
"auto-build.build.silent": false,
"redhat.telemetry.enabled": false,
//"editor.rulers": [
// 120
//],
"telemetry.telemetryLevel": "off",
"security.workspace.trust.untrustedFiles": "open",
"keyboard.dispatch": "keyCode",
"vim.disableExtension": true,
"terminal.integrated.defaultProfile.linux": "fish",
"files.exclude": {
"tmp.md": true
},
"[java]": {
"editor.defaultFormatter": "redhat.java"
},
"[html]": {
"editor.defaultFormatter": "mohd-akram.vscode-html-format"
},
"workbench.colorTheme": "Catppuccin Mocha",
"terminal.integrated.defaultProfile.windows": "PowerShell",
"terminal.integrated.profiles.windows": {
"PowerShell": {
"source": "PowerShell",
"icon": "terminal-powershell"
},
"Command Prompt": {
"path": [
"${env:windir}\\Sysnative\\cmd.exe",
"${env:windir}\\System32\\cmd.exe"
],
"args": [],
"icon": "terminal-cmd"
},
"Git Bash": {
"source": "Git Bash"
}
},
"code-runner.runInTerminal": true,
"hexeditor.columnWidth": 32,
"hexeditor.showDecodedText": true,
"hexeditor.defaultEndianness": "little",
"hexeditor.inspectorType": "aside",
"[dockerfile]": {
"editor.defaultFormatter": "ms-azuretools.vscode-docker"
},
"[nginx]": {
"editor.defaultFormatter": "ahmadalli.vscode-nginx-conf"
},
2023-11-20 00:48:36 -06:00
"workbench.iconTheme": "catppuccin-mocha",
"terminal.integrated.shellIntegration.enabled": false,
2024-02-28 13:13:28 -06:00
"inlineChat.showDiff": false,
"mssql.connections": [
{
2024-04-17 21:41:22 -05:00
"server": "192.168.122.169",
2024-02-28 13:13:28 -06:00
"database": "WideWorldImporters",
"authenticationType": "SqlLogin",
2024-04-17 21:41:22 -05:00
"user": "sa",
2024-02-28 13:13:28 -06:00
"password": "",
"emptyPasswordInput": false,
"savePassword": true,
"encrypt": "Mandatory",
"trustServerCertificate": true,
"connectTimeout": 15,
"commandTimeout": 30,
"applicationName": "vscode-mssql"
}
],
"[cpp]": {
"editor.defaultFormatter": "xaver.clang-format"
},
"clang-format.executable": "/opt/clang-format-static/clang-format-17",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
2024-03-06 20:18:13 -06:00
},
"[css]": {
"editor.defaultFormatter": "vscode.css-language-features"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[c]": {
"editor.defaultFormatter": "ms-vscode.cpptools"
},
"errorLens.enabledDiagnosticLevels": [
"error",
//"warning",
//"info"
],
"files.autoSaveDelay": 300,
"editor.fontFamily": "'Fira Code Nerd', 'Droid Sans Mono', 'monospace', monospace",
2024-08-01 19:16:18 -05:00
"editor.fontLigatures": true,
"[rust]": {
"editor.defaultFormatter": "rust-lang.rust-analyzer"
}
}