neovim-flake/modules/plugins/lsp/code-actions/default.nix

11 lines
251 B
Nix
Raw Normal View History

{lib, ...}: let
inherit (lib.options) mkEnableOption;
in {
imports = [
./fastaction-nvim
];
options.vim.lsp.code-actions = {
enable = mkEnableOption "code-actions. Setting this to `false` will disable all code action plugins.";
};
}