Remove ripgrep
Remove ripgrep globally but keep it installed in Neovim so live grep will continue to work.
This commit is contained in:
parent
b801755db5
commit
58b5e9a452
|
@ -69,6 +69,5 @@ in
|
||||||
];
|
];
|
||||||
PULUMI_SKIP_UPDATE_CHECK = "true";
|
PULUMI_SKIP_UPDATE_CHECK = "true";
|
||||||
REPOS = "$HOME/Code";
|
REPOS = "$HOME/Code";
|
||||||
RIPGREP_CONFIG_PATH = "$HOME/.config/ripgrep/config";
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,7 +10,6 @@
|
||||||
./neovim.nix
|
./neovim.nix
|
||||||
./notes.nix
|
./notes.nix
|
||||||
./phpactor.nix
|
./phpactor.nix
|
||||||
./ripgrep.nix
|
|
||||||
./starship.nix
|
./starship.nix
|
||||||
./syncthing.nix
|
./syncthing.nix
|
||||||
./tmux.nix
|
./tmux.nix
|
||||||
|
|
|
@ -170,6 +170,7 @@ in
|
||||||
phpPackages.php-codesniffer
|
phpPackages.php-codesniffer
|
||||||
phpPackages.phpstan
|
phpPackages.phpstan
|
||||||
proselint
|
proselint
|
||||||
|
ripgrep
|
||||||
shellcheck
|
shellcheck
|
||||||
yamllint
|
yamllint
|
||||||
];
|
];
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
{ pkgs, ... }:
|
|
||||||
{
|
|
||||||
home.packages = with pkgs; [ ripgrep ];
|
|
||||||
|
|
||||||
xdg.configFile."ripgrep/config".text = ''
|
|
||||||
--follow
|
|
||||||
--smart-case
|
|
||||||
'';
|
|
||||||
}
|
|
Loading…
Reference in a new issue