mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-08 12:35:59 +01:00
10 lines
251 B
Nix
10 lines
251 B
Nix
{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.";
|
|
};
|
|
}
|