refactor: reorganize Ansible tasks for better structure and include common package installations
All checks were successful
Nix Format Check / check-format (pull_request) Successful in 40s

This commit is contained in:
2025-01-22 15:11:58 +01:00
parent 596a3574df
commit c651722b73
20 changed files with 125 additions and 186 deletions

View File

@ -9,28 +9,49 @@
"markdown": true,
"scminput": false
},
"git.autofetch": true,
"workbench.iconTheme": "vscode-icons",
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"git.autofetch": false,
"git.openRepositoryInParentFolders": "always",
"makefile.configureOnOpen": false,
"vsicons.dontShowNewVersionMessage": true,
"debug.internalConsoleOptions": "openOnSessionStart",
"[go]": {
"editor.tabSize": 4,
"editor.renderWhitespace": "all"
},
"[dart]": {
// Automatically format code on save and during typing of certain characters
// (like `;` and `}`).
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.rulers": [140],
// 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.suggestSelection": "first",
// Allows pressing <TAB> to complete snippets such as `for` even when the
// completion list is not visible.
"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"
},
"[nix]": {
"editor.formatOnSave": true
"remote.SSH.remotePlatform": {
"mennos-laptop": "linux",
"mennos-desktop": "linux"
},
"editor.tabSize": 2,
"editor.insertSpaces": true,
@ -41,5 +62,5 @@
"[dockercompose]": {
"editor.defaultFormatter": "ms-azuretools.vscode-docker"
},
"go.toolsManagement.autoUpdate": true,
"go.toolsManagement.autoUpdate": true
}