summaryrefslogtreecommitdiffstats
path: root/modules/plugins/git/vim-fugitive/vim-fugitive.nix
blob: b7a26ebb6f67878f118050321d10023def962260 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  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 = {};
  };
}