devel: Fix for latest macOS and Homebrew

This commit is contained in:
Jannik Beyerstedt 2026-01-09 23:37:59 +01:00
parent 5efc74ba96
commit 5c45bfa5fc
2 changed files with 11 additions and 11 deletions

View file

@ -2,8 +2,8 @@
# Common/Devel: Install and Configure Dev Env - macOS Version
- name: Devel - Fonts
community.general.homebrew_cask:
name: homebrew/cask-fonts/font-hack
community.general.homebrew:
name: font-hack
state: present
# Install Visual Studio Code and Set Basic Configuration
@ -81,6 +81,6 @@
state: present
vars:
packages:
- basictex
- basictex # neeeds sudo
- tex-live-utility
diff: false

View file

@ -25,15 +25,15 @@
block:
- name: VSCode - Basics - Configure
ansible.builtin.shell: |
PATH=/usr/local/bin:$PATH
code --install-extension chiehyu.vscode-astyle
code --install-extension editorconfig
PATH=/usr/local/bin:/opt/homebrew/bin:$PATH
# code --install-extension chiehyu.vscode-astyle
# code --install-extension editorconfig
code --install-extension mhutchie.git-graph
code --install-extension yzane.markdown-pdf
code --install-extension jebbs.plantuml
code --install-extension mechatroner.rainbow-csv
code --install-extension grapecity.gc-excelviewer
# code --install-extension grapecity.gc-excelviewer
# VS Code - C/C++ Development Tools
- name: VSCode - C/C++
@ -41,7 +41,7 @@
block:
- name: VSCode - C/C++ - Configure VS Code
ansible.builtin.shell: |
PATH=/usr/local/bin:$PATH
PATH=/usr/local/bin:/opt/homebrew/bin:$PATH
code --install-extension ms-vscode.cpptools
code --install-extension ms-vscode.cmake-tools
@ -58,7 +58,7 @@
block:
- name: VSCode - Python - Configure VS Code
ansible.builtin.shell: |
PATH=/usr/local/bin:$PATH
PATH=/usr/local/bin:/opt/homebrew/bin:$PATH
code --install-extension ms-python.python
# VC Code - Golang Development Tools
@ -96,7 +96,7 @@
block:
- name: VSCode - Golang - Configure VS Code
ansible.builtin.shell: |
PATH=/usr/local/bin:$PATH
PATH=/usr/local/bin:/opt/homebrew/bin:$PATH
code --install-extension golang.go
# VS Code - LaTeX Distribution
@ -114,5 +114,5 @@
block:
- name: VSCode - Basics - Configure
ansible.builtin.shell: |
PATH=/usr/local/bin:$PATH
PATH=/usr/local/bin:/opt/homebrew/bin:$PATH
code --install-extension james-yu.latex-workshop