diff --git a/files/vscode-settings.json b/files/vscode-settings.json index 0f877cc..ab1980b 100644 --- a/files/vscode-settings.json +++ b/files/vscode-settings.json @@ -19,7 +19,6 @@ "editor.formatOnType": false, "editor.multiCursorModifier": "ctrlCmd", "diffEditor.ignoreTrimWhitespace": false, - "files.trimTrailingWhitespace": true, "[json]": { "editor.tabSize": 4 }, @@ -40,17 +39,9 @@ "[markdown]": { "files.trimTrailingWhitespace": false }, - "[cpp]": { - "editor.defaultFormatter": "ms-vscode.cpptools" - }, - "[c]": { - "editor.defaultFormatter": "ms-vscode.cpptools" - }, - "[asn1]": { - "editor.formatOnSave": false - }, "python.linting.pylintPath": "/usr/local/bin/pylint", "python.pythonPath": "/usr/local/bin/python3", + "window.zoomLevel": 0, "latex-workshop.view.pdf.viewer": "tab", "latex-workshop.latex.recipes": [ { @@ -153,8 +144,5 @@ "git.confirmSync": false, "explorer.confirmDelete": false, "extensions.ignoreRecommendations": true, - "workbench.colorTheme": "Default Light+", - "redhat.telemetry.enabled": false, - "go.toolsManagement.autoUpdate": true, - "rust-analyzer.hover.memoryLayout.size": "both" + "workbench.colorTheme": "Default Light+" } \ No newline at end of file diff --git a/tasks/devel-Debian.yml b/tasks/devel-Debian.yml index 73204af..3f7fee5 100644 --- a/tasks/devel-Debian.yml +++ b/tasks/devel-Debian.yml @@ -75,9 +75,11 @@ - name: Devel - Golang - Install developer tools become: true ansible.builtin.apt: - name: - - golang + name: "{{ packages }}" state: present + vars: + packages: + - golang diff: false # Dev Env - LaTeX Distribution diff --git a/tasks/essentials-Debian.yml b/tasks/essentials-Debian.yml index 451a8b9..027642a 100644 --- a/tasks/essentials-Debian.yml +++ b/tasks/essentials-Debian.yml @@ -4,7 +4,11 @@ - name: Essentials - Install essential utilities become: true ansible.builtin.apt: - name: + name: "{{ packages }}" + state: present + update_cache: true + vars: + packages: - git - curl - wget @@ -12,6 +16,4 @@ - vim - tmux - python3-pip - state: present - update_cache: true diff: false diff --git a/tasks/tools-Debian.yml b/tasks/tools-Debian.yml index 522f652..e16da83 100644 --- a/tasks/tools-Debian.yml +++ b/tasks/tools-Debian.yml @@ -5,10 +5,12 @@ - name: Tools - Install basic utilities become: true ansible.builtin.apt: - name: + name: "{{ packages }}" + state: present + vars: + packages: - rsync - dnsutils - htop - unzip - state: present diff: false diff --git a/tasks/usertools-Debian.yml b/tasks/usertools-Debian.yml index 98770e9..d61847e 100644 --- a/tasks/usertools-Debian.yml +++ b/tasks/usertools-Debian.yml @@ -4,11 +4,13 @@ - name: Usertools - Install user's working utilities become: true ansible.builtin.apt: - name: + name: "{{ packages }}" + state: present + vars: + packages: - nmap - rsync - icdiff - iftop - ansible - state: present diff: false