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

21 lines
399 B
Nix
Raw Permalink Normal View History

2024-07-19 01:08:20 -05:00
{ 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";
};
};
}