Compare commits

...

2 Commits

Author SHA1 Message Date
7ada9c7fc4 remove useless comments vscode settings
Some checks failed
Ansible Lint Check / check-ansible (push) Failing after 9s
Python Lint Check / check-python (push) Has been cancelled
Nix Format Check / check-format (push) Has been cancelled
2025-08-27 14:08:15 +02:00
d52671ede7 disable zed telemetry 2025-08-27 14:08:01 +02:00
2 changed files with 6 additions and 18 deletions

View File

@@ -26,27 +26,11 @@
}, },
"[dart]": { "[dart]": {
// Automatically format code on save and during typing of certain characters
// (like `;` and `}`).
"editor.formatOnSave": false, "editor.formatOnSave": false,
"editor.formatOnType": false, "editor.formatOnType": false,
"editor.rulers": [120],
// Draw a guide line at 80 characters, where Dart's formatting will wrap code.
"editor.rulers": [80],
// Disables built-in highlighting of words that match your selection. Without
// this, all instances of the selected text will be highlighted, interfering
// with Dart's ability to highlight only exact references to the selected variable.
"editor.selectionHighlight": false, "editor.selectionHighlight": false,
// Allows pressing <TAB> to complete snippets such as `for` even when the
// completion list is not visible.
"editor.tabCompletion": "onlySnippets", "editor.tabCompletion": "onlySnippets",
// By default, VS Code will populate code completion with words found in the
// matching documents when a language service does not provide its own completions.
// This results in code completion suggesting words when editing comments and
// strings. This setting will prevent that.
"editor.wordBasedSuggestions": "off" "editor.wordBasedSuggestions": "off"
}, },
"remote.SSH.remotePlatform": { "remote.SSH.remotePlatform": {
@@ -96,4 +80,4 @@
"kilo-code.deniedCommands": [], "kilo-code.deniedCommands": [],
"github.copilot.nextEditSuggestions.enabled": true, "github.copilot.nextEditSuggestions.enabled": true,
"workbench.iconTheme": "vscode-icons" "workbench.iconTheme": "vscode-icons"
} }

View File

@@ -10,6 +10,10 @@
// ############################################# // #############################################
// ## Theming ## // ## Theming ##
// ############################################# // #############################################
"telemetry": {
"diagnostics": false,
"metrics": false
},
"ssh_connections": [ "ssh_connections": [
{ {
"host": "desktop", "host": "desktop",