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

14 lines
174 B
Nix
Raw Normal View History

{
config,
lib,
...
}:
with lib;
2023-03-31 04:20:35 +02:00
with builtins; {
options.vim.lsp = {
trouble = {
enable = mkEnableOption "Enable trouble diagnostics viewer";
};
};
}