plugins/otter: migrate autoActivate to the new lsp module

This commit is contained in:
Heitor Augusto 2025-07-07 13:36:34 -03:00 committed by Matt Sturgeon
parent 67785f9577
commit e58246583e

View file

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