From fdf8d742cee373c7e371119875e58152e995ecd2 Mon Sep 17 00:00:00 2001 From: jasmine Date: Wed, 7 Aug 2024 14:24:44 +0800 Subject: [PATCH] Install fugitive --- config/default.nix | 1 + config/plugins/git/fugitive.nix | 8 ++++++++ 2 files changed, 9 insertions(+) create mode 100644 config/plugins/git/fugitive.nix diff --git a/config/default.nix b/config/default.nix index fe71607..23e898e 100644 --- a/config/default.nix +++ b/config/default.nix @@ -28,6 +28,7 @@ ./plugins/lsp/lsp.nix # Git + ./plugins/git/fugitive.nix ./plugins/git/gitsigns.nix ./plugins/git/lazygit.nix diff --git a/config/plugins/git/fugitive.nix b/config/plugins/git/fugitive.nix new file mode 100644 index 0000000..2e07407 --- /dev/null +++ b/config/plugins/git/fugitive.nix @@ -0,0 +1,8 @@ +{ ... }: + +{ + plugins.fugitive = { + enable = true; + }; +} +