mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-02-12 20:13:19 +00:00
10 lines
177 B
Nix
10 lines
177 B
Nix
![]() |
{lib, ...}: let
|
||
|
inherit (lib.options) mkEnableOption;
|
||
|
in {
|
||
|
options.vim.lsp = {
|
||
|
otter = {
|
||
|
enable = mkEnableOption "trouble lsp for markup languages";
|
||
|
};
|
||
|
};
|
||
|
}
|