From 189fef0a7665f184450eacdda5a22472ce4b6d27 Mon Sep 17 00:00:00 2001 From: Michael Silverberg <13588399+mbd-s@users.noreply.github.com> Date: Fri, 26 Apr 2024 13:25:02 +0200 Subject: [PATCH] Remove nonessential dependencies --- Brewfile | 1 - Makefile | 2 -- .../Library/Application Support/Code/User/snippets/go.json | 7 ------- 3 files changed, 10 deletions(-) delete mode 100644 vs-code/Library/Application Support/Code/User/snippets/go.json diff --git a/Brewfile b/Brewfile index a739955..c111295 100644 --- a/Brewfile +++ b/Brewfile @@ -23,7 +23,6 @@ brew 'cfssl' # CloudFlare's PKI toolkit brew 'checkov' # Prevent cloud misconfigurations during build-time for IaC tools brew 'colima' # Container runtimes on MacOS (and Linux) with minimal setup brew 'coreutils' # GNU File, Shell, and Text utilities -brew 'cowsay' # Configurable talking characters in ASCII art brew 'diff-so-fancy' # Good-lookin' diffs with diff-highlight and more brew 'direnv' # Load/unload environment variables based on $PWD brew 'docker-compose' # Isolated development environments using Docker diff --git a/Makefile b/Makefile index a6f8b93..892c680 100644 --- a/Makefile +++ b/Makefile @@ -5,10 +5,8 @@ DOTFILES := $(shell pwd) ASDF_PLUGINS := \ golang \ kubectl \ - kubergrunt \ nodejs \ python \ - richgo \ ruby \ terraform \ terragrunt diff --git a/vs-code/Library/Application Support/Code/User/snippets/go.json b/vs-code/Library/Application Support/Code/User/snippets/go.json deleted file mode 100644 index db69019..0000000 --- a/vs-code/Library/Application Support/Code/User/snippets/go.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "qq": { - "prefix": "qq", - "body": "q.Q($1) // DEBUG", - "description": "Pretty-print to $TMPDIR/q" - } -}