Skip to content
This repository has been archived by the owner on Aug 25, 2024. It is now read-only.

Commit

Permalink
chore(nvim): add qfreplace
Browse files Browse the repository at this point in the history
  • Loading branch information
ttak0422 committed Mar 3, 2024
1 parent e722fb6 commit 5bb3785
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 3 additions & 3 deletions neovim/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@
end
'';

in
{
in {
_module.args.pkgs = import inputs.nixpkgs {
inherit system;
overlays = import ./overlays.nix inputs;
Expand All @@ -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";
Expand Down Expand Up @@ -153,6 +152,7 @@
indent-blankline
global-note
denops
qfreplace
];
lazyGroups = with groups; [
oil
Expand Down
4 changes: 4 additions & 0 deletions neovim/plugins.nix
Original file line number Diff line number Diff line change
Expand Up @@ -747,6 +747,10 @@ let
};
};
tool = with pkgs.vimPlugins; {
qfreplace = {
plugin = vim-qfreplace;
onCommands = [ "Qfreplace" ];
};
global-note = {
plugin = pkgs.vimPluginsUnstable.global-note-nvim;
postConfig = {
Expand Down

0 comments on commit 5bb3785

Please sign in to comment.