1
Fork 0

Some changes:

- FOSDEM wifi
- Started trying to use eww (I think I added a base16 theming system?)
- Custom exa aliases!
This commit is contained in:
Matei Adriel 2023-02-08 04:31:15 +01:00
commit 9eeb459372
No known key found for this signature in database
11 changed files with 74 additions and 14 deletions
home/adrielus/features/cli

View file

@ -1,6 +1,16 @@
{
programs.exa = {
enable = true;
enableAliases = true;
};
{ pkgs, ... }: {
home.packages = [ pkgs.exa ];
# TODO: generalize alias creation to all shells
programs.fish.shellAliases =
let exa = "${pkgs.exa}/bin/exa";
in
rec {
ls = "${exa} --icons --long";
la = "${ls} --all";
lt = "${ls} --tree"; # Similar to tree, but also has --long!
# I am used to using pkgs.tree, so this is nice to have!
tree = "${exa} --icons --tree";
};
}