mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 02:28:37 +02:00
configured ripgrep
This commit is contained in:
@@ -164,7 +164,6 @@ wl-clipboard # cli copy/past utilities for Wayland
|
|||||||
jp # lightweight and flexible cli JSON parser
|
jp # lightweight and flexible cli JSON parser
|
||||||
notepad-next
|
notepad-next
|
||||||
libnotify # Library that sends desktop notifications to a notification daemon
|
libnotify # Library that sends desktop notifications to a notification daemon
|
||||||
ripgrep #better grepp
|
|
||||||
hyprkeys # keybind helper
|
hyprkeys # keybind helper
|
||||||
cowsay
|
cowsay
|
||||||
cmatrix
|
cmatrix
|
||||||
|
|||||||
@@ -26,6 +26,7 @@ imports = [
|
|||||||
../../modules/home-manager/anki.nix # we use only for some settings. see ../../modules/nixos/anki.nix for activating
|
../../modules/home-manager/anki.nix # we use only for some settings. see ../../modules/nixos/anki.nix for activating
|
||||||
../../modules/home-manager/librewolf.nix # privacy browser
|
../../modules/home-manager/librewolf.nix # privacy browser
|
||||||
../../modules/home-manager/cursor.nix # cursor (the icon not the app)
|
../../modules/home-manager/cursor.nix # cursor (the icon not the app)
|
||||||
|
../../modules/home-manager/ripgrep.nix # better grep
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,18 @@
|
|||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
programs.ripgrep = {
|
||||||
|
enable = true;
|
||||||
|
arguments = [
|
||||||
|
"-S"
|
||||||
|
"-."
|
||||||
|
"-p"
|
||||||
|
"-n"
|
||||||
|
"-c"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
programs.ripgrep-all = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user