mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-02 19:41:15 +00:00
15 lines
274 B
Nix
15 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 = {};
|
||
|
};
|
||
|
}
|