Compare commits

...

2 Commits

Author SHA1 Message Date
Jannik Beyerstedt 009f274b0e VSCode: Update settings 2023-07-03 10:21:08 +02:00
Jannik Beyerstedt f3ab61b8ff [TIDY] Refactor apt commands 2023-07-03 10:17:52 +02:00
5 changed files with 23 additions and 19 deletions

View File

@ -19,6 +19,7 @@
"editor.formatOnType": false,
"editor.multiCursorModifier": "ctrlCmd",
"diffEditor.ignoreTrimWhitespace": false,
"files.trimTrailingWhitespace": true,
"[json]": {
"editor.tabSize": 4
},
@ -39,9 +40,17 @@
"[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": [
{
@ -144,5 +153,8 @@
"git.confirmSync": false,
"explorer.confirmDelete": false,
"extensions.ignoreRecommendations": true,
"workbench.colorTheme": "Default Light+"
"workbench.colorTheme": "Default Light+",
"redhat.telemetry.enabled": false,
"go.toolsManagement.autoUpdate": true,
"rust-analyzer.hover.memoryLayout.size": "both"
}

View File

@ -75,11 +75,9 @@
- name: Devel - Golang - Install developer tools
become: true
ansible.builtin.apt:
name: "{{ packages }}"
state: present
vars:
packages:
name:
- golang
state: present
diff: false
# Dev Env - LaTeX Distribution

View File

@ -4,11 +4,7 @@
- name: Essentials - Install essential utilities
become: true
ansible.builtin.apt:
name: "{{ packages }}"
state: present
update_cache: true
vars:
packages:
name:
- git
- curl
- wget
@ -16,4 +12,6 @@
- vim
- tmux
- python3-pip
state: present
update_cache: true
diff: false

View File

@ -5,12 +5,10 @@
- name: Tools - Install basic utilities
become: true
ansible.builtin.apt:
name: "{{ packages }}"
state: present
vars:
packages:
name:
- rsync
- dnsutils
- htop
- unzip
state: present
diff: false

View File

@ -4,13 +4,11 @@
- name: Usertools - Install user's working utilities
become: true
ansible.builtin.apt:
name: "{{ packages }}"
state: present
vars:
packages:
name:
- nmap
- rsync
- icdiff
- iftop
- ansible
state: present
diff: false