mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-08 13:45:59 +01: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";
|
||
|
};
|
||
|
};
|
||
|
}
|