plugins/otter: add autoActivate support for the new lsp module

This commit is contained in:
Heitor Augusto 2025-06-19 19:51:06 -03:00
parent 6a1a348ab1
commit f198380fa5
No known key found for this signature in database
GPG key ID: 53C04F8F46A1A344

View file

@ -113,6 +113,10 @@ lib.nixvim.plugins.mkNeovimPlugin {
plugins.lsp.onAttach = lib.mkIf cfg.autoActivate ''
require('otter').activate()
'';
lsp.onAttach = lib.mkIf cfg.autoActivate ''
require('otter').activate()
'';
};
}