Signed-off-by: Christoph Schmatzler <christoph@schmatzler.com>
This commit is contained in:
2025-08-16 18:28:40 +00:00
parent 52549832bc
commit 8bd245d495
4 changed files with 35 additions and 17 deletions

View File

@@ -4,19 +4,20 @@
...
}: {
imports = [
./fish.nix
./starship.nix
./zsh.nix
./atuin.nix
./bat.nix
./eza.nix
./fish.nix
./git.nix
./lazygit.nix
./mise.nix
./neovim
./ripgrep.nix
./ssh.nix
./starship.nix
./zellij.nix
./zoxide.nix
./neovim
./zsh.nix
];
programs.home-manager.enable = true;

21
modules/home/ripgrep.nix Normal file
View File

@@ -0,0 +1,21 @@
{
programs.ripgrep = {
enable = true;
arguments = [
"--max-columns=150"
"--max-columns-preview"
"--smart-case"
"--colors=column:none"
"--colors=column:fg:4"
"--colors=column:style:underline"
"--colors=line:none"
"--colors=line:fg:4"
"--colors=match:none"
"--colors=match:bg:0"
"--colors=match:fg:6"
"--colors=path:none"
"--colors=path:fg:14"
"--colors=path:style:bold"
];
};
}