From e58246583eea27bfead0d53bc5594b224bd212e7 Mon Sep 17 00:00:00 2001 From: Heitor Augusto Date: Mon, 7 Jul 2025 13:36:34 -0300 Subject: [PATCH] plugins/otter: migrate autoActivate to the new lsp module --- plugins/by-name/otter/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/by-name/otter/default.nix b/plugins/by-name/otter/default.nix index 4ec0b59e..35a78850 100644 --- a/plugins/by-name/otter/default.nix +++ b/plugins/by-name/otter/default.nix @@ -111,7 +111,7 @@ lib.nixvim.plugins.mkNeovimPlugin { ''; }; - plugins.lsp.onAttach = lib.mkIf cfg.autoActivate '' + lsp.onAttach = lib.mkIf cfg.autoActivate '' require('otter').activate() ''; };