From 55f720e419134f7723b26c358dd99f681cdc2fbe Mon Sep 17 00:00:00 2001 From: akulij Date: Wed, 26 Feb 2025 18:16:55 +0000 Subject: [PATCH] Add language server `gopls` to shell config --- shell.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/shell.nix b/shell.nix index e3460e5..f041eaa 100644 --- a/shell.nix +++ b/shell.nix @@ -2,5 +2,6 @@ pkgs.mkShell { buildInputs = [ pkgs.go + pkgs.gopls ]; }