Compare commits
2 commits
f380e0ba29
...
009f274b0e
Author | SHA1 | Date | |
---|---|---|---|
009f274b0e | |||
f3ab61b8ff |
|
@ -19,6 +19,7 @@
|
||||||
"editor.formatOnType": false,
|
"editor.formatOnType": false,
|
||||||
"editor.multiCursorModifier": "ctrlCmd",
|
"editor.multiCursorModifier": "ctrlCmd",
|
||||||
"diffEditor.ignoreTrimWhitespace": false,
|
"diffEditor.ignoreTrimWhitespace": false,
|
||||||
|
"files.trimTrailingWhitespace": true,
|
||||||
"[json]": {
|
"[json]": {
|
||||||
"editor.tabSize": 4
|
"editor.tabSize": 4
|
||||||
},
|
},
|
||||||
|
@ -39,9 +40,17 @@
|
||||||
"[markdown]": {
|
"[markdown]": {
|
||||||
"files.trimTrailingWhitespace": false
|
"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.linting.pylintPath": "/usr/local/bin/pylint",
|
||||||
"python.pythonPath": "/usr/local/bin/python3",
|
"python.pythonPath": "/usr/local/bin/python3",
|
||||||
"window.zoomLevel": 0,
|
|
||||||
"latex-workshop.view.pdf.viewer": "tab",
|
"latex-workshop.view.pdf.viewer": "tab",
|
||||||
"latex-workshop.latex.recipes": [
|
"latex-workshop.latex.recipes": [
|
||||||
{
|
{
|
||||||
|
@ -144,5 +153,8 @@
|
||||||
"git.confirmSync": false,
|
"git.confirmSync": false,
|
||||||
"explorer.confirmDelete": false,
|
"explorer.confirmDelete": false,
|
||||||
"extensions.ignoreRecommendations": true,
|
"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"
|
||||||
}
|
}
|
|
@ -75,11 +75,9 @@
|
||||||
- name: Devel - Golang - Install developer tools
|
- name: Devel - Golang - Install developer tools
|
||||||
become: true
|
become: true
|
||||||
ansible.builtin.apt:
|
ansible.builtin.apt:
|
||||||
name: "{{ packages }}"
|
name:
|
||||||
state: present
|
|
||||||
vars:
|
|
||||||
packages:
|
|
||||||
- golang
|
- golang
|
||||||
|
state: present
|
||||||
diff: false
|
diff: false
|
||||||
|
|
||||||
# Dev Env - LaTeX Distribution
|
# Dev Env - LaTeX Distribution
|
||||||
|
|
|
@ -4,11 +4,7 @@
|
||||||
- name: Essentials - Install essential utilities
|
- name: Essentials - Install essential utilities
|
||||||
become: true
|
become: true
|
||||||
ansible.builtin.apt:
|
ansible.builtin.apt:
|
||||||
name: "{{ packages }}"
|
name:
|
||||||
state: present
|
|
||||||
update_cache: true
|
|
||||||
vars:
|
|
||||||
packages:
|
|
||||||
- git
|
- git
|
||||||
- curl
|
- curl
|
||||||
- wget
|
- wget
|
||||||
|
@ -16,4 +12,6 @@
|
||||||
- vim
|
- vim
|
||||||
- tmux
|
- tmux
|
||||||
- python3-pip
|
- python3-pip
|
||||||
|
state: present
|
||||||
|
update_cache: true
|
||||||
diff: false
|
diff: false
|
||||||
|
|
|
@ -5,12 +5,10 @@
|
||||||
- name: Tools - Install basic utilities
|
- name: Tools - Install basic utilities
|
||||||
become: true
|
become: true
|
||||||
ansible.builtin.apt:
|
ansible.builtin.apt:
|
||||||
name: "{{ packages }}"
|
name:
|
||||||
state: present
|
|
||||||
vars:
|
|
||||||
packages:
|
|
||||||
- rsync
|
- rsync
|
||||||
- dnsutils
|
- dnsutils
|
||||||
- htop
|
- htop
|
||||||
- unzip
|
- unzip
|
||||||
|
state: present
|
||||||
diff: false
|
diff: false
|
||||||
|
|
|
@ -4,13 +4,11 @@
|
||||||
- name: Usertools - Install user's working utilities
|
- name: Usertools - Install user's working utilities
|
||||||
become: true
|
become: true
|
||||||
ansible.builtin.apt:
|
ansible.builtin.apt:
|
||||||
name: "{{ packages }}"
|
name:
|
||||||
state: present
|
|
||||||
vars:
|
|
||||||
packages:
|
|
||||||
- nmap
|
- nmap
|
||||||
- rsync
|
- rsync
|
||||||
- icdiff
|
- icdiff
|
||||||
- iftop
|
- iftop
|
||||||
- ansible
|
- ansible
|
||||||
|
state: present
|
||||||
diff: false
|
diff: false
|
||||||
|
|
Loading…
Reference in a new issue