From 49bf387f962a3831a5a4c0999bc9140ae2ff6387 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jalil=20David=20Salam=C3=A9=20Messina?= Date: Mon, 2 Jun 2025 22:59:11 +0200 Subject: [PATCH] feat(nvim): configure gopls (but don't install it) This allows me to work on Go projects (mainly Forgejo). --- modules/nixvim/dev-plugins.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/nixvim/dev-plugins.nix b/modules/nixvim/dev-plugins.nix index 4a4ff8a..d7c0a21 100644 --- a/modules/nixvim/dev-plugins.nix +++ b/modules/nixvim/dev-plugins.nix @@ -13,6 +13,7 @@ let "basedpyright" "bashls" "clangd" + "gopls" # "html" # Not writing html "jsonls" "marksman" @@ -56,6 +57,7 @@ in # Configure the LSPs, but don't install the packages. # If you need to use them, add them to your project's devShell clangd = noPackage; + gopls = noPackage; zls = noPackage; }; };