mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-07 22:55:58 +01:00
14 lines
274 B
Nix
14 lines
274 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib.options) mkEnableOption;
|
|
in {
|
|
options.vim.git.vim-fugitive = {
|
|
enable = mkEnableOption "vim-fugitive" // {default = config.vim.git.enable;};
|
|
|
|
# TODO: sane default keybinds for vim-fugitive
|
|
# mappings = {};
|
|
};
|
|
}
|