nixcfg/homeManagerModules/apps/shell/default.nix
Aly Raffauf 2d597195b3
Some checks are pending
git-mirror / gitlab-sync (push) Waiting to run
nix-build / default-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-build / slateport-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
home/shell: enable direnv
2024-09-05 21:51:21 -04:00

77 lines
1.5 KiB
Nix

{
config,
lib,
pkgs,
...
}: {
config = lib.mkIf config.ar.home.apps.shell.enable {
home.shellAliases = {
cat = lib.getExe pkgs.bat;
grep = lib.getExe config.programs.ripgrep.package;
};
programs = {
bash = {
enable = true;
enableCompletion = true;
enableVteIntegration = true;
shellOptions = [
"autocd"
"cdspell"
"checkjobs"
"checkwinsize"
"dirspell"
"dotglob"
"extglob"
"globstar"
"histappend"
];
initExtra = ''
export PS1="[\[$(tput setaf 27)\]\u\[$(tput setaf 135)\]@\[$(tput setaf 45)\]\h:\[$(tput setaf 33)\]\w] \[$(tput sgr0)\]$ "
'';
};
direnv.enable = true;
eza = {
enable = true;
extraOptions = ["--group-directories-first" "--header"];
git = true;
icons = true;
};
fzf = {
enable = true;
tmux.enableShellIntegration = true;
};
oh-my-posh = {
enable = true;
useTheme = "zash";
};
ripgrep = {
enable = true;
arguments = ["--pretty"];
};
zsh = {
enable = true;
autocd = true;
autosuggestion.enable = true;
enableCompletion = true;
enableVteIntegration = true;
historySubstringSearch.enable = true;
history = {
expireDuplicatesFirst = true;
extended = true;
ignoreAllDups = true;
};
};
};
};
}