mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-07 22:55:58 +01:00
7 lines
213 B
Nix
7 lines
213 B
Nix
{lib, ...}: let
|
|
inherit (lib.options) mkEnableOption;
|
|
in {
|
|
options.vim.utility.diffview-nvim = {
|
|
enable = mkEnableOption "diffview-nvim: cycle through diffs for all modified files for any git rev";
|
|
};
|
|
}
|