neovim-flake/modules/lsp/trouble/trouble.nix

14 lines
174 B
Nix

{
config,
lib,
...
}:
with lib;
with builtins; {
options.vim.lsp = {
trouble = {
enable = mkEnableOption "Enable trouble diagnostics viewer";
};
};
}