From 2fbfe534f9cd440f4d4cf64065c33019ac6e3d77 Mon Sep 17 00:00:00 2001 From: kenneth Date: Sun, 4 Jan 2026 23:13:06 +0000 Subject: [PATCH] dev: add gitpod automation task to setup nvim Co-authored-by: Ona --- .gitpod/automations.yaml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.gitpod/automations.yaml b/.gitpod/automations.yaml index 9135b6c..f107450 100644 --- a/.gitpod/automations.yaml +++ b/.gitpod/automations.yaml @@ -1,3 +1,13 @@ +tasks: + editor-setup: + name: Editor Setup + description: Install nvim plugins and Mason LSP tools after dotfiles are applied + command: | + rm -f ~/.local/share/nvim/mason/.lockfile + ./scripts/editor-setup.sh + triggeredBy: + - postDevcontainerStart + services: bun-install: name: Install Dependencies @@ -19,7 +29,7 @@ services: fi triggeredBy: - postEnvironmentStart - + bun-dev: name: Bun Development Server description: Runs the Bun development server with hot reloading @@ -43,7 +53,7 @@ services: pkill -f "bun.*dev" triggeredBy: - postEnvironmentStart - + convex-dev: name: Convex Development Server description: Runs the Convex development server for backend functions