From 5c45bfa5fc0a64c244a2aef473204aa485b05da0 Mon Sep 17 00:00:00 2001 From: Jannik Beyerstedt Date: Fri, 9 Jan 2026 23:37:59 +0100 Subject: [PATCH] devel: Fix for latest macOS and Homebrew --- tasks/devel-Darwin.yml | 6 +++--- tasks/devel.yml | 16 ++++++++-------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/tasks/devel-Darwin.yml b/tasks/devel-Darwin.yml index 7f088b5..a315680 100644 --- a/tasks/devel-Darwin.yml +++ b/tasks/devel-Darwin.yml @@ -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 diff --git a/tasks/devel.yml b/tasks/devel.yml index a67d951..899805d 100644 --- a/tasks/devel.yml +++ b/tasks/devel.yml @@ -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