cli tools

This commit is contained in:
2024-02-28 16:26:12 -05:00
parent 116856e6f2
commit 7a7c626474
5 changed files with 41 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
{ pkgs, config, ... }:
{
programs = {
bat = {
enable = true;
};
};
}

View File

@@ -0,0 +1,12 @@
{ pkgs, config, ... }:
{
programs = {
eza = {
enable = true;
enableAliases = true;
git = true;
icons = true;
};
};
}

View File

@@ -0,0 +1,10 @@
{ pkgs, config, ... }:
{
programs = {
zoxide = {
enable = true;
enableZshIntegration = true;
};
};
}

View File

@@ -15,6 +15,11 @@
"zsh-users/zsh-history-substring-search"
];
};
shellAliases = {
cd = "z";
cdi = "zi";
cat = "bat";
};
};
starship = {
enable = true;