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