From 047352753eea9089a1ce216ca51fbc4196124d23 Mon Sep 17 00:00:00 2001 From: Mohammad Rafiq Date: Thu, 22 May 2025 11:59:24 +0800 Subject: [PATCH] feat(nvf): add hardtime-nvim --- modules/home/cli/editor/nvf/binds.nix | 4 ++++ modules/home/cli/editor/nvf/default.nix | 2 ++ modules/home/cli/editor/nvf/notify.nix | 3 +++ 3 files changed, 9 insertions(+) create mode 100644 modules/home/cli/editor/nvf/binds.nix create mode 100644 modules/home/cli/editor/nvf/notify.nix diff --git a/modules/home/cli/editor/nvf/binds.nix b/modules/home/cli/editor/nvf/binds.nix new file mode 100644 index 0000000..3e8cee5 --- /dev/null +++ b/modules/home/cli/editor/nvf/binds.nix @@ -0,0 +1,4 @@ +{ + hardtime-nvim.enable = true; + whichKey.enable = true; +} diff --git a/modules/home/cli/editor/nvf/default.nix b/modules/home/cli/editor/nvf/default.nix index 4062bea..bda28b0 100644 --- a/modules/home/cli/editor/nvf/default.nix +++ b/modules/home/cli/editor/nvf/default.nix @@ -6,10 +6,12 @@ enable = true; settings.vim = { autocomplete = import ./autocomplete.nix; + binds = import ./binds.nix; keymaps = import ./keymaps.nix; languages = import ./languages.nix; lsp = import ./lsp.nix; options = import ./options.nix; + notify = import ./notify.nix; utility = import ./utility.nix; visuals = import ./visuals.nix; }; diff --git a/modules/home/cli/editor/nvf/notify.nix b/modules/home/cli/editor/nvf/notify.nix new file mode 100644 index 0000000..ebf1415 --- /dev/null +++ b/modules/home/cli/editor/nvf/notify.nix @@ -0,0 +1,3 @@ +{ + nvim-notify.enable = true; +}