This repository has been archived on 2024-07-29. You can view files and clone it, but cannot push or open issues or pull requests.
nix-config/home/fish/aliases.nix
Wyatt J. Miller 08a543fabe added significant items
added fish shellInit, removed top level empty configuration, removed
lib.mkIf logic for fish aliases
2024-07-21 10:03:25 -04:00

21 lines
399 B
Nix

{ lib, config, ... }:
{
programs.fish = {
shellAliases = {
# ls aliases
ls = "eza --color $argv";
la = "eza -l -all --color $argv";
ll = "eza -l --color $argv";
lt = "eza -l --color --git $argv";
# lazygit alias
lg = "lazygit";
# cat, less, more alias
cat = "bat $argv";
less = "bat $argv";
more = "bat $argv";
};
};
}