mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
Merge 4932ff7750
into 6a1a348ab1
This commit is contained in:
commit
699285ff00
1 changed files with 5 additions and 1 deletions
|
@ -9,7 +9,7 @@ lib.nixvim.plugins.mkNeovimPlugin {
|
||||||
packPathName = "otter.nvim";
|
packPathName = "otter.nvim";
|
||||||
package = "otter-nvim";
|
package = "otter-nvim";
|
||||||
|
|
||||||
maintainers = [ ];
|
maintainers = [ lib.maintainers.HeitorAugustoLN ];
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
# TODO: introduced 2024-06-29; remove after 24.11
|
# TODO: introduced 2024-06-29; remove after 24.11
|
||||||
|
@ -113,6 +113,10 @@ lib.nixvim.plugins.mkNeovimPlugin {
|
||||||
plugins.lsp.onAttach = lib.mkIf cfg.autoActivate ''
|
plugins.lsp.onAttach = lib.mkIf cfg.autoActivate ''
|
||||||
require('otter').activate()
|
require('otter').activate()
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
lsp.onAttach = lib.mkIf cfg.autoActivate ''
|
||||||
|
require('otter').activate()
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue