Files
dotfiles/vscode/settings.json
Menno van Leeuwen 422509eecc
Some checks failed
Ansible Lint Check / check-ansible (push) Failing after 2s
Nix Format Check / check-format (push) Failing after 2s
Python Lint Check / check-python (push) Failing after 2s
Merge branch 'master' of ssh://git.mvl.sh/vleeuwenmenno/dotfiles
2025-09-09 10:41:37 +02:00

87 lines
2.3 KiB
JSON
Executable File

{
"security.workspace.trust.untrustedFiles": "open",
"editor.fontFamily": "Hack Nerd Font",
"terminal.integrated.fontFamily": "Hack Nerd Font",
"github.copilot.enable": {
"*": true
},
"git.autofetch": true,
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"vsicons.dontShowNewVersionMessage": true,
"debug.internalConsoleOptions": "openOnSessionStart",
"[go]": {
"editor.tabSize": 4,
"editor.renderWhitespace": "all"
},
"[nix]": {
"editor.formatOnSave": true,
"editor.formatOnType": true
},
"[dart]": {
"editor.formatOnSave": false,
"editor.formatOnType": false,
"editor.rulers": [120],
"editor.selectionHighlight": false,
"editor.tabCompletion": "onlySnippets",
"editor.wordBasedSuggestions": "off"
},
"remote.SSH.remotePlatform": {
"mennos-laptop-w": "linux",
"mennos-desktop": "linux",
"cloud": "linux"
},
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.detectIndentation": true,
"editor.autoIndent": "full",
"debug.inlineValues": "on",
"git.confirmSync": false,
"[dockercompose]": {
"editor.defaultFormatter": "ms-azuretools.vscode-docker"
},
"go.toolsManagement.autoUpdate": true,
"redhat.telemetry.enabled": false,
"makefile.configureOnOpen": false,
"dart.debugExternalPackageLibraries": true,
"dart.debugSdkLibraries": true,
"dart.warnWhenEditingFilesOutsideWorkspace": false,
"window.confirmSaveUntitledWorkspace": false,
"git.openRepositoryInParentFolders": "never",
"debug.toolBarLocation": "commandCenter",
"workbench.colorTheme": "Catppuccin Latte",
"ansible.lightspeed.enabled": false,
"ansible.lightspeed.suggestions.enabled": false,
"docker.extension.enableComposeLanguageServer": false,
"roo-cline.allowedCommands": [
"npm test",
"npm install",
"tsc",
"git log",
"git diff",
"git show"
],
"roo-cline.deniedCommands": [],
"kilo-code.allowedCommands": [
"npm test",
"npm install",
"tsc",
"git log",
"git diff",
"git show",
"flutter analyze",
"flutter"
"make"
],
"kilo-code.deniedCommands": [],
"github.copilot.nextEditSuggestions.enabled": true,
"workbench.iconTheme": "vscode-icons"
}