From 5bb3785bb76b55bdd8cb94a93993e1a50d9a6af0 Mon Sep 17 00:00:00 2001 From: ttak0422 Date: Sun, 3 Mar 2024 20:15:55 +0900 Subject: [PATCH] chore(nvim): add qfreplace --- neovim/default.nix | 6 +++--- neovim/plugins.nix | 4 ++++ 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/neovim/default.nix b/neovim/default.nix index 623061f..f3feb43 100644 --- a/neovim/default.nix +++ b/neovim/default.nix @@ -18,8 +18,7 @@ end ''; - in - { + in { _module.args.pkgs = import inputs.nixpkgs { inherit system; overlays = import ./overlays.nix inputs; @@ -46,7 +45,7 @@ }; bundler-nvim = { - inherit (callPackage ./neovim-ci.nix {}) ci-nightly-latest; + inherit (callPackage ./neovim-ci.nix { }) ci-nightly-latest; default = { inherit extraConfig extraLuaConfig; # logLevel = "debug"; @@ -153,6 +152,7 @@ indent-blankline global-note denops + qfreplace ]; lazyGroups = with groups; [ oil diff --git a/neovim/plugins.nix b/neovim/plugins.nix index a4cdd79..123f1e2 100644 --- a/neovim/plugins.nix +++ b/neovim/plugins.nix @@ -747,6 +747,10 @@ let }; }; tool = with pkgs.vimPlugins; { + qfreplace = { + plugin = vim-qfreplace; + onCommands = [ "Qfreplace" ]; + }; global-note = { plugin = pkgs.vimPluginsUnstable.global-note-nvim; postConfig = {